/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ArthaShield Official Color Palette */
    --primary-color: #1D3557; /* Primary Navy Blue - Main Logo Color */
    --primary-dark: #2E4A70; /* Deep Steel Blue - Shadow/Emblem Depth */
    --secondary-color: #D4AF37; /* Soft Gold - Embossed Highlight Gold */
    --accent-color: #D4AF37; /* Soft Gold for accents */
    --gold-dark: #B8941F; /* Darker gold for hover states */
    --text-dark: #1D3557; /* Primary Navy Blue for text */
    --text-light: #2E4A70; /* Deep Steel Blue for secondary text */
    --bg-light: #F2EDE4; /* Warm Paper Beige - Background Texture */
    --bg-white: #F8F5F0; /* Warmer, slightly darker off-white (replaces pure white) */
    --bg-form: #F8F5F0; /* Same warmer off-white for forms */
    --border-color: #B8B1A5; /* Shadow Brown-Grey - Embossing Shadows */
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(29, 53, 87, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(29, 53, 87, 0.2);
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 5rem;
    
    /* Section Padding */
    --section-padding: 5rem 0;
    --section-padding-sm: 3rem 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light); /* Warm Paper Beige background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}


/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
    z-index: 1;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.nav-menu a:hover::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.15);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 80%;
    transform: translateX(-50%) scaleX(1);
}

.nav-menu .btn-primary {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.nav-menu .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.dropdown {
    position: relative;
    z-index: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--secondary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.arrow {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(212, 175, 55, 0.1)"/></svg>');
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 0;
}


.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin: 0 0 2rem 0;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    line-height: 1.4;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 2.5rem 0;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.hero-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0;
}

.hero-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-dark)); /* Gold gradient */
    color: var(--primary-color); /* Navy Blue text on gold */
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--secondary-color));
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 53, 87, 0.2);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 53, 87, 0.2);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:active {
    transform: translateY(0);
}

/* Value Propositions */
.value-props {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(29, 53, 87, 0.15);
    border-color: var(--secondary-color);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    color: var(--gold-dark);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
}

.value-icon i {
    font-size: 3rem;
    transition: all 0.3s ease;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--primary-color);
}

.value-card p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
}

/* Service Showcase */
.service-showcase {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto 3.5rem;
    color: var(--primary-color);
    max-width: 800px;
    line-height: 1.2;
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.service-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

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

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--gold-dark);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
}

.service-icon i {
    font-size: 4rem;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 0 1.5rem 0;
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    margin: 0 0 2.5rem 0;
    text-align: left;
    width: 100%;
    padding: 0;
    flex-grow: 1;
}

.service-card ul li {
    padding: 0.625rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.5;
}

.service-card ul li {
    transition: all 0.3s ease;
}

.service-card ul li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-card ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    top: 0.625rem;
}

.service-card ul li:hover:before {
    transform: scale(1.2);
    color: var(--gold-dark);
}

.service-card .btn {
    margin-top: auto;
    width: auto;
    align-self: center;
}

/* Why Choose Us */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    max-width: 800px;
}

.why-list {
    list-style: none;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

.why-list li {
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    font-size: 1.125rem;
    color: var(--text-dark);
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.6;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 53, 87, 0.15);
    border-left-width: 6px;
    border-left-color: var(--gold-dark);
}

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    color: var(--text-dark);
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

/* Forms */
.form-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.content-section + .form-section {
    padding-top: 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3.5rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(29, 53, 87, 0.08);
    border: 1px solid rgba(184, 177, 165, 0.3);
}


.form-group {
    margin-bottom: 1.75rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(184, 177, 165, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input[type="file"] {
    padding: 0.5rem;
    cursor: pointer;
}

.form-group select {
    cursor: pointer;
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.35rem;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.page-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 1.125rem;
    line-height: 1.6;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="rgba(212, 175, 55, 0.08)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
    font-weight: 600;
}

.content-section h3:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--text-light);
    margin: 0 0 1.25rem 0;
    line-height: 1.8;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul {
    margin: 0 0 2rem 2rem;
    padding: 0;
    list-style-position: outside;
}

.content-section ul:last-child {
    margin-bottom: 0;
}

.content-section ul li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.7;
}

.content-section ul li:last-child {
    margin-bottom: 0;
}

.content-section ul li i {
    color: var(--secondary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    margin: 0 0 1.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-col a:hover::after {
    width: 100%;
}

.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

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

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thank-you-icon {
    font-size: 4rem;
    margin: 0 auto 2rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.thank-you-icon i {
    font-size: 4rem;
}

.thank-you h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    font-weight: 700;
}

.thank-you p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 0.5rem;
        align-items: stretch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 1rem 1.25rem;
        text-align: left;
        border-radius: 8px;
    }

    .nav-menu .btn-primary {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 1.5rem;
        margin-top: 0.5rem;
        background: var(--bg-light);
        border-radius: 8px;
        padding: 0.5rem 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .hero-link {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }

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

    .value-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card,
    .service-card {
        padding: 2rem 1.5rem;
    }

    .value-icon,
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .value-icon i,
    .service-icon i {
        font-size: 2.5rem;
    }

    .value-card h3,
    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card .btn {
        width: 100%;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .container {
        padding: 0 1.25rem;
    }

    .content-section,
    .value-props,
    .service-showcase,
    .why-choose,
    .testimonials,
    .form-section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 3.5rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .content-section h3 {
        font-size: 1.375rem;
    }

    .why-list {
        max-width: 100%;
    }

    .why-list li {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

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

/* Phone-specific styles (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero {
        min-height: 450px;
    }

    .hero-content {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

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

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .value-card,
    .service-card,
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon,
    .service-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .value-icon i,
    .service-icon i {
        font-size: 2.25rem;
    }

    .value-card h3,
    .service-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .value-card p,
    .service-card p {
        font-size: 0.9rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .form-container {
        padding: 2rem 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .content-section,
    .value-props,
    .service-showcase,
    .why-choose,
    .testimonials,
    .form-section {
        padding: 2.5rem 0;
    }

    .page-header {
        padding: 3rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.25rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }

    .why-intro {
        font-size: 1rem;
    }

    .why-list li {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .footer {
        padding: 3rem 0 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        display: inline-block;
        text-align: left;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better touch targets */
    .nav-menu a,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Optimize content sections */
    .content-section ul {
        margin-left: 1.5rem;
    }

    .content-section ul li {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }
}

