/* ============================================================
   Cloudhunter - Main Stylesheet
   ============================================================ */

/* Custom Properties
   ---------------------------------------------------------- */
:root {
    --color-primary: #1E77C4;
    --color-primary-dark: #1660A8;
    --color-primary-light: #3A91D8;
    --color-dark: #434647;
    --color-dark-2: #2c2c2c;
    --color-nav-active: #6B7073;
    --color-text: #444444;
    --color-text-light: #626262;
    --color-bg-light: #f5f5f5;
    --color-bg-lighter: #fcfcfc;
    --color-white: #ffffff;
    --color-border: #ebebeb;
    --color-subheader: #737373;

    --font-family: 'Roboto', sans-serif;
    --header-height: 72px;
    --container-width: 1500px;
    --section-pad: 70px 0;
    --radius: 3px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
    --transition: 0.25s ease;
}

/* Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

/* Container
   ---------------------------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Titles
   ---------------------------------------------------------- */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark-2);
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 50px;
}

.section-title-bar {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 12px auto 40px;
    border-radius: 2px;
}

/* Buttons
   ---------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 13px 32px;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark-2);
}

.btn-outline-blue {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-size: 12px;
    padding: 8px 20px;
    margin-top: 16px;
}

.btn-outline-blue:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    padding: 0 24px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

.nav-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    height: 100%;
}

.nav-list li {
    display: flex;
}

.nav-list li a {
    display: flex;
    align-items: center;
    padding: 0 11px;
    font-size: 11.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.nav-list li a:hover,
.nav-list li.current a {
    background: var(--color-nav-active);
    color: var(--color-white);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ============================================================
   HERO SLIDESHOW
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-caption {
    background: rgba(45, 45, 45, 0.58);
    padding: 22px 44px;
    text-align: center;
    max-width: 1360px;
    margin: 0 24px;
}

.hero-slide-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.2px;
}

.hero-slide-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0 0;
    letter-spacing: 0.3px;
}

/* Ruled variant — horizontal lines flanking the text */
.hero-slide-sub--ruled {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.hero-slide-sub--ruled::before,
.hero-slide-sub--ruled::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.50);
}

/* ============================================================
   INTRO BAR (below hero)
   ============================================================ */
.intro-bar {
    background: var(--color-subheader);
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    padding: 18px 24px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.intro-bar strong {
    color: var(--color-white);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: var(--section-pad);
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

/* Row 1: 3 cards spanning 2 columns each */
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
    grid-column: span 2;
}

/* Rows 2 & 3: 2 cards spanning 3 columns each */
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6),
.service-card:nth-child(7) {
    grid-column: span 3;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 32px 28px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.service-icon {
    width: 81px;
    height: 81px;
    background: rgba(55, 172, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 39px;
    height: 39px;
    color: var(--color-primary);
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-2);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.service-card .service-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 4px;
    flex: 1;
}

.service-features li {
    font-size: 15px;
    color: var(--color-text-light);
    padding: 4px 0 4px 16px;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: var(--section-pad);
    background: var(--color-bg-light);
}

.testimonials-track-wrap {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.45s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 12px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 4px;
    padding: 40px 44px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 80px;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.25;
    position: absolute;
    top: 16px;
    left: 28px;
    font-family: Georgia, serif;
}

.testimonial-logo {
    width: 122px;
    height: 122px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-dark-2);
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Carousel controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 16px;
}

.testimonial-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.partners-subtitle {
    color: #333;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.6;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 160px;
    max-width: 400px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 600px) {
    .partners-logos {
        gap: 28px;
    }

    .partner-logo img {
        max-height: 110px;
        max-width: 260px;
    }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--section-pad);
    background: var(--color-white);
}

.contact-grid {
    display: flex;
    justify-content: center;
}

/* Contact info */
.contact-info-col {
    max-width: 480px;
    width: 100%;
    padding-top: 4px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(55, 172, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-text strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-dark-2);
    margin-bottom: 3px;
}

.contact-detail-text a,
.contact-detail-text span {
    font-size: 15px;
    color: var(--color-text-light);
}

.contact-detail-text a:hover {
    color: var(--color-primary);
}

.contact-tagline {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.70);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 48px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.60);
}

.footer-nav-list li {
    margin-bottom: 8px;
}

.footer-nav-list li a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-nav-list li a:hover {
    color: var(--color-primary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ============================================================
   PAGE BANNER (subpages)
   ============================================================ */
.page-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-subheader);
    display: flex;
    align-items: center;
}

.page-banner .container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.80);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
}

/* ============================================================
   PAGE LAYOUT (sidebar + main)
   ============================================================ */
.page-content-section {
    padding: 60px 0 70px;
}

.page-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.sidebar-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: center;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.sidebar-cta-icon img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.sidebar-cta-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.sidebar-cta-text a {
    color: var(--color-primary);
}

.sidebar-cta-text a:hover {
    color: var(--color-primary-dark);
}

/* ============================================================
   ABOUT PAGE — Info sections + Team
   ============================================================ */
.about-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.about-section-heading {
    font-size: 22px;
    font-weight: 400;
    color: #288af9;
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-info-block p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.75;
    text-align: justify;
}

.meet-the-team-heading {
    font-size: 28px;
    font-weight: 300;
    color: #288af9;
    padding-left: 20px;
    margin-bottom: 28px;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px 28px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-bg-lighter);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-border);
    margin-bottom: 18px;
    flex-shrink: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 17px;
    font-weight: 700;
    color: #288af9;
    margin-bottom: 5px;
}

.team-title {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.4;
}

.team-bio {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.75;
    text-align: justify;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-pad: 55px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Subpage layout: hide sidebar, full-width main */
    .page-layout {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        display: none;
    }
}

/* ============================================================
   NAV OVERFLOW — class-based, controlled by JS
   .nav-measuring  : temporarily forces desktop layout to measure
   .nav-collapsed  : activates hamburger/dropdown
   ============================================================ */

/* While measuring: force full desktop layout so scrollWidth is accurate */
.site-header.nav-measuring .nav-toggle { display: none !important; }
.site-header.nav-measuring .nav-list {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    height: 100% !important;
    align-items: stretch !important;
    padding: 0 !important;
}
.site-header.nav-measuring .nav-list li { display: flex !important; }
.site-header.nav-measuring .nav-list li a {
    display: flex !important;
    align-items: center !important;
    padding: 0 11px !important;
    height: 100% !important;
    width: auto !important;
    font-size: 11.5px !important;
}

/* Collapsed: show hamburger + dropdown */
.site-header.nav-collapsed .nav-toggle {
    display: flex;
}
.site-header.nav-collapsed .main-nav {
    position: relative;
    align-self: center;
}
.site-header.nav-collapsed .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: -24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    min-width: 230px;
    padding: 8px 0;
    z-index: 200;
    height: auto;
    align-items: stretch;
}
.site-header.nav-collapsed .nav-list.open {
    display: flex;
}
.site-header.nav-collapsed .nav-list li {
    display: block;
}
.site-header.nav-collapsed .nav-list li a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    height: auto;
    width: 100%;
}

/* Reduce header height on small screens */
@media (max-width: 778px) {
    :root { --header-height: 64px; }
}

/* Small tablet / large mobile — layout stacking */
@media (max-width: 778px) {
    :root {
        --section-pad: 44px 0;
    }

    .hero-slider {
        height: 300px;
    }

    .hero-slide-caption {
        padding: 16px 28px;
    }

    .hero-slide-title {
        font-size: 22px;
    }

    .hero-slide-sub {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3),
    .service-card:nth-child(4),
    .service-card:nth-child(5),
    .service-card:nth-child(6),
    .service-card:nth-child(7) {
        grid-column: span 1;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Subpage — banner */
    .page-banner {
        height: 160px;
    }

    /* About page — stack info blocks and team */
    .about-top-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   DYNAMICS 365 PAGE — Intro + Feature Grid
   ============================================================ */
.d365-intro-heading {
    font-size: 22px;
    font-weight: 400;
    color: #288af9;
    margin-bottom: 14px;
    line-height: 1.3;
}

.d365-intro-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

.d365-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

.d365-feature {
    border-top: 2px solid var(--color-primary);
    padding-top: 16px;
}

.d365-feature-heading {
    font-size: 16px;
    font-weight: 700;
    color: #288af9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.d365-feature p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.75;
    text-align: justify;
}

@media (max-width: 778px) {
    .d365-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FEATURE LIST — bulleted list inside feature cards
   ============================================================ */
.feature-list {
    list-style: none;
    margin-top: 10px;
}

.feature-list li {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.75;
    padding: 4px 0 4px 18px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-intro {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-2);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact page form */
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.contact-form .form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-text);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    box-sizing: border-box;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 119, 196, 0.12);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .form-submit {
    margin-top: 8px;
}

@media (max-width: 778px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-slider {
        height: 240px;
    }

    .hero-slide-caption {
        padding: 14px 20px;
        margin: 0 16px;
    }

    .hero-slide-title {
        font-size: 14px;
    }

    .hero-slide-sub {
        font-size: 10px;
    }

    .hero-slide-sub--ruled {
        white-space: normal;
    }

    .page-banner {
        height: 140px;
    }

    .page-banner-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px;
    }

    .container {
        padding: 0 16px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .testimonial-card {
        padding: 24px 18px;
    }

    .testimonial-card::before {
        font-size: 60px;
    }
}
