/* ===================================================
   HYFIC INDIA CO - Chartered Accountant Website
   Design System & Global Styles
   =================================================== */

/* ----- CSS Custom Properties ----- */
:root {
    /* Primary Colors — matched from camehanassociates.com */
    --navy: #091a34;
    --navy-dark: #091a34;
    --navy-deeper: #020919;
    --navy-light: #1c2230;
    --gold: #d09a21;
    --gold-light: #e0b044;
    --gold-dark: #b28728;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #f5f5f5;
    --gray-50: #f5f5f580;
    --gray-100: #e5e5e5;
    --gray-200: #d4d4d4;
    --gray-300: #a3a3a3;
    --gray-400: #737373;
    --gray-500: #525252;
    --gray-600: #404040;
    --gray-700: #262626;
    --gray-800: #020919;
    
    /* Typography — matched from camehanassociates.com */
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Open Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 96px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows — matched from camehanassociates.com */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 6px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 10px 20px rgba(0,0,0,0.08);
    --shadow-gold: 0 10px 25px rgba(0,0,0,0.2);
    
    /* Border Radius — matched from camehanassociates.com */
    --radius-sm: 0.625rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1rem;
    --radius-full: 50px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    color: var(--gray-600);
    background: var(--white);
    line-height: 160%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ----- Utility Classes ----- */
.text-gold {
    color: var(--gold);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 20px;
    background: transparent;
    border-radius: var(--radius-full);
    border: none;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--white);
}

.section-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy-deeper);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-nav {
    background: linear-gradient(45deg, var(--gold), var(--gold-dark)) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all var(--transition-smooth) !important;
    letter-spacing: 0.5px !important;
}

.btn-nav:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
    transform: translateY(-3px) !important;
    color: var(--white) !important;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(28, 34, 48, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 1001;
}

.brand-hyfic {
    color: var(--gold);
    font-family: var(--font-display);
}

.brand-india {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav::after {
    display: none;
}

/* Hamburger */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.navbar-toggle .bar {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #091a34;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: #091a34bf;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212,175,55,0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-display);
}

.hero-stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-text strong {
    color: var(--navy-dark);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.about-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mission .about-card-icon {
    background: rgba(11,61,145,0.1);
    color: var(--navy);
}

.vision .about-card-icon {
    background: rgba(212,175,55,0.1);
    color: var(--gold-dark);
}

.about-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.about-card p {
    font-size: 0.92rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* About Visual Card */
.about-visual-card {
    background: linear-gradient(160deg, var(--navy-dark), var(--navy));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 60%);
    border-radius: 50%;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.about-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.about-icon-item:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.3);
}

.about-icon-item i {
    font-size: 1.8rem;
    color: var(--gold);
}

.about-icon-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.about-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.about-highlight-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-highlight-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ===================================================
   SERVICES SECTION
   =================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(212,175,55,0.08), transparent);
    transition: height var(--transition-slow);
}

.service-card:hover {
    border-color: rgba(212,175,55,0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--gold);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deeper);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 25px;
}

.service-card-line {
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 20px;
    transition: width var(--transition-base);
}

.service-card:hover .service-card-line {
    width: 60px;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-us {
    background: var(--off-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-icon {
    width: 55px;
    height: 55px;
    border: 1px solid var(--gray-100);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.3rem;
    color: var(--gold);
    transition: all var(--transition-smooth);
}

.why-card:hover .why-card-icon {
    background: rgba(208,154,33,0.1);
    border-color: var(--gold);
    transform: scale(1.05);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 24px;
}

/* ===================================================
   PROCESS SECTION
   =================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.1));
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
    transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
}

.process-step-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    flex: 1;
    transition: all var(--transition-smooth);
}

.process-step:hover .process-step-content {
    border-color: rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.06);
}

.process-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(212,175,55,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.1rem;
}

.process-step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact {
    background: var(--off-white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.contact-card a {
    color: var(--navy);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-card a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

/* ===================================================
   CONTACT FORM SECTION
   =================================================== */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-full {
    margin-bottom: 28px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.required {
    color: var(--gold);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    z-index: 1;
    transition: color var(--transition-base);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.92rem;
    transition: all var(--transition-base);
    outline: none;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.input-wrapper select option {
    background: var(--navy-deeper);
    color: var(--white);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--gold);
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.input-wrapper input:focus + i,
.input-wrapper:focus-within i {
    color: var(--gold);
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper i {
    top: 16px;
    position: absolute;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #22C55E;
    margin-bottom: 24px;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-size: 1.6rem;
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 12px;
}

.form-success p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: var(--gray-800);
    color: rgba(255,255,255,0.7);
}

.footer-top-section {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-deeper);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: .875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    line-height: 30px;
}

.footer-col h3::after {
    display: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 32px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-base);
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    margin-top: 45px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===================================================
   BACK TO TOP & WHATSAPP
   =================================================== */
.back-to-top {
    position: fixed;
    right: 10px;
    bottom: 30px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: ease-in 0.5s;
    box-shadow: 0px 0px 8px #e7dfdf;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    bottom: 50px;
}

.back-to-top:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 10px;
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================================================
   ANIMATIONS
   =================================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
        --container-padding: 16px;
    }

    /* --- Navbar --- */
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-deeper);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .navbar-menu.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(208,154,33,0.1);
    }

    .btn-nav {
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }

    .navbar-toggle {
        display: flex;
    }

    /* --- Hero --- */
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 12px;
        padding: 20px 16px;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-plus {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hero-stat-divider {
        width: 1px;
        height: 40px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* --- Section Headers --- */
    .section-header {
        margin-bottom: 32px;
    }

    .section-tag {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    .section-divider {
        width: 40px;
    }

    /* --- About --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-visual-card {
        padding: 24px;
    }

    .about-icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-icon-item {
        padding: 16px 10px;
    }

    .about-card {
        padding: 18px;
        gap: 14px;
    }

    .about-card-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .about-card h3 {
        font-size: 1rem;
    }

    .about-card p {
        font-size: 0.85rem;
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .services-cta {
        padding: 30px 20px;
        text-align: center;
    }

    .services-cta-text h3 {
        font-size: 1.2rem;
    }

    .services-cta-text p {
        font-size: 0.9rem;
    }

    /* --- Why Choose Us --- */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 22px;
    }

    /* --- Process --- */
    .process-line {
        left: 20px;
    }

    .process-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.85rem;
    }

    .process-step {
        gap: 16px;
    }

    .process-step-content {
        padding: 18px;
    }

    .process-step-content h3 {
        font-size: 1rem;
    }

    .process-step-content p {
        font-size: 0.85rem;
    }

    /* --- Contact --- */
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 24px 18px;
    }

    /* --- Form --- */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-wrapper {
        padding: 24px 18px;
    }

    .form-wrapper h3 {
        font-size: 1.2rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 14px 12px 40px;
        font-size: 0.88rem;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-top-section {
        padding: 50px 0 30px;
    }

    .footer-bottom {
        margin-top: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* --- Floating Buttons --- */
    .whatsapp-float {
        bottom: 90px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .back-to-top {
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .back-to-top.visible {
        bottom: 40px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
        --container-padding: 14px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-stats {
        padding: 16px 12px;
        gap: 8px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .about-icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-visual-card {
        padding: 18px;
    }

    .hero-content {
        padding: 0 4px;
    }

    .navbar-menu {
        width: 85%;
        padding: 90px 24px 32px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .why-card {
        padding: 22px 18px;
    }

    .service-card {
        padding: 22px 18px;
    }

    .form-wrapper {
        padding: 20px 14px;
    }

    .contact-card {
        padding: 20px 14px;
    }

    .process-step-content {
        padding: 14px;
    }

    .footer-col h3 {
        font-size: 0.8rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
