/* ====================================
   RESET & BASE STYLES
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Black, White, Gray Theme */
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color: #808080;
    --dark: #000000;
    --dark-light: #1A1A1A;
    --text-dark: #FFFFFF;
    --text-light: #B3B3B3;
    --white: #FFFFFF;
    --light-bg: #0A0A0A;
    --gradient-1: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-2: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    
    /* Typography */
    --font-primary: 'Libre Baskerville', serif;
    --font-secondary: 'Libre Baskerville', serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    color: #FFFFFF;
    line-height: 1.8;
    background-color: var(--primary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ====================================
   NAVIGATION
   ==================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid #1A1A1A;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.logo-img:hover {
    filter: brightness(1.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
    display: inline-block;
    padding: 18px 42px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
}

/* ====================================
   HERO SECTION
   ==================================== */

.hero {
    padding: 200px 0 140px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--white);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-description {
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 48px;
    line-height: 1.9;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ====================================
   SECTIONS
   ==================================== */

.grow-brands,
.core-offerings,
.what-we-offer {
    padding: 120px 0;
    position: relative;
    background-image: url('images/sections-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.grow-brands .container,
.core-offerings .container,
.what-we-offer .container {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center .section-label {
    display: block;
}

.section-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    margin-top: 16px;
}

.section-title {
    font-size: 56px;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title.centered {
    text-align: center;
}

.section-description {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.9;
    max-width: 750px;
}

/* Two Column Layout */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: start;
    background-image: url('images/sections-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
}

.col-left .section-title {
    font-size: 52px;
    line-height: 1.2;
}

.approach-list {
    margin-top: 48px;
}

.approach-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.approach-number {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    min-width: 60px;
}

.approach-item h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--white);
}

.approach-item p {
    font-size: 17px;
    color: #FFFFFF;
    line-height: 1.7;
}

.grow-brands {
}

.grow-content {
    max-width: 700px;
}

/* ====================================
   CORE OFFERINGS
   ==================================== */

.core-offerings {
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--dark-light);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #1A1A1A;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: var(--white);
    transform: translateY(-8px);
}

.service-number {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.service-icon-wrapper {
    margin-bottom: 32px;
}

.service-card .service-icon {
    font-size: 56px;
    display: block;
}

.service-card h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--white);
}

.service-card p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 32px;
}

.service-highlights li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-highlights li:last-child {
    border-bottom: none;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(10px);
}

.offering-card {
    background: var(--dark-light);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid #1A1A1A;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.offering-card:hover {
    transform: translateY(-12px);
    border-color: #3A3A3A;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.08);
}

.offering-card:hover::before {
    transform: translateX(100%);
}

.offering-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.offering-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 700;
}

.offering-card p {
    color: #FFFFFF;
    line-height: 1.8;
    font-size: 17px;
}

/* ====================================
   WHAT WE OFFER
   ==================================== */

.what-we-offer {
}

.services-list {
    max-width: 700px;
    margin: 80px auto 60px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #1A1A1A;
    font-size: 19px;
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    padding-left: 10px;
    color: var(--white);
}

.service-item .bullet {
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    margin-top: 80px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--primary-color);
    padding: 0;
    border-radius: 12px;
    border: 1px solid #1A1A1A;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.feature-card:hover {
    border-color: #3A3A3A;
    transform: translateY(-5px);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/feature-card-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card-bg {
    opacity: 0.6;
    transform: scale(1.05);
}

.feature-card-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.feature-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.8;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid #2A2A2A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px;
        gap: 20px;
        transition: var(--transition);
        border-right: 1px solid #2A2A2A;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
        margin-top: 50px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .two-col-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .service-number {
        font-size: 60px;
        top: 30px;
        right: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .offering-card {
        padding: 30px;
    }
}

/* ====================================
   PAGE HEADER (Internal Pages)
   ==================================== */

.page-header {
    padding: 160px 0 80px;
    background: var(--primary-color);
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   ABOUT PAGE
   ==================================== */

.about-content {
    padding: var(--section-padding);
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    border: 1px solid #2A2A2A;
}

.mission-vision {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
}

.mv-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
}

.values-section {
    padding: 120px 0;
    position: relative;
    background-image: url('images/sections-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    padding: 32px;
    background: var(--primary-color);
    border-radius: 16px;
    border: 1px solid #2A2A2A;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--dark-light);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.value-card p {
    color: #FFFFFF;
    line-height: 1.7;
}

.why-choose {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.reasons-list {
    margin-top: 60px;
    max-width: 900px;
}

.reason-item {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.reason-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    opacity: 0.3;
    min-width: 80px;
}

.reason-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.reason-content p {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
}

/* ====================================
   SERVICES PAGE
   ==================================== */

.services-intro {
    padding: 60px 0;
    background: var(--dark-light);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.8;
}

.main-services {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.service-detail-card {
    background: var(--dark-light);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid #2A2A2A;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.service-icon-large {
    font-size: 64px;
}

.service-detail-card h2 {
    font-size: 36px;
    margin: 0;
    color: var(--white);
}

.service-description {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-features h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: #FFFFFF;
}

.service-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
}

.service-packages {
    padding: var(--section-padding);
    background: var(--dark-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: -20px;
    margin-bottom: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.package-card {
    background: var(--primary-color);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid #2A2A2A;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.package-card.featured {
    background: var(--dark-light);
    color: var(--white);
    border-color: var(--white);
}

.package-card.featured h3,
.package-card.featured .package-description {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.package-description {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 32px;
    min-height: 80px;
}

/* ====================================
   CONTACT PAGE
   ==================================== */

.contact-section {
    padding: 120px 0;
    position: relative;
    background-image: url('images/sections-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.method-icon {
    font-size: 32px;
    min-width: 50px;
}

.method-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-details p,
.method-details a {
    font-size: 16px;
    color: #FFFFFF;
}

.method-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.method-details a:hover {
    text-decoration: underline;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-light);
    border: 1px solid #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px);
}

.contact-form-wrapper {
    background: var(--primary-color);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #2A2A2A;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #2A2A2A;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-secondary);
    transition: var(--transition);
    background: var(--dark-light);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    cursor: pointer;
}

.form-note {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 8px;
}

.faq-section {
    padding: var(--section-padding);
    background: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: var(--dark-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #2A2A2A;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.faq-item p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
}

/* ====================================
   CTA BANNER
   ==================================== */

.cta-banner {
    padding: 100px 0;
    background: var(--dark-light);
    text-align: center;
    color: var(--white);
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-banner .btn-primary:hover {
    transform: scale(1.05);
    background: var(--accent-color);
}

/* ====================================
   RESPONSIVE - INTERNAL PAGES
   ==================================== */

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-detail-card {
        padding: 30px;
    }
    
    .service-detail-card h2 {
        font-size: 28px;
    }
    
    .reason-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .reason-number {
        min-width: auto;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}
