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

:root {
    --primary-color: #0f1e2e;
    --secondary-color: #1e3a5f;
    --accent-color: #f4d03f;
    --accent-gold: #f7dc6f;
    --accent-blue: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(244, 208, 63, 0.4);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #fdfdfb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    white-space: nowrap;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link.cta-button {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-gold));
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

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

.nav-link.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    background-image: linear-gradient(110deg, rgba(15, 30, 46, 0.8), rgba(30, 58, 95, 0.75)), url('HERO.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-align: left;
    color: white;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 5%;
    width: 90%;
    height: 85%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(15, 30, 46, 0.8), rgba(15, 30, 46, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 20px;
    margin-left: 5%;
    animation: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 208, 63, 0.22);
    border: 1px solid rgba(244, 208, 63, 0.7);
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-badge span:last-child {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.6rem;
    text-shadow: none;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(244, 208, 63, 0.35), transparent);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.hero-feature {
    display: block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

.feature-icon {
    font-size: 1.3rem;
}

.hero-trust-indicators {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    animation: none;
}

.scroll-indicator {
    display: none;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.35);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    font-size: 1.15rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, #f6c954 100%);
    border: 2px solid transparent;
    animation: none;
}

.btn-cta-primary .btn-text {
    position: relative;
    z-index: 2;
}

.btn-cta-primary .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(244, 208, 63, 0.55);
    background: linear-gradient(135deg, #f6c954 0%, var(--accent-color) 100%);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1rem 2.2rem;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.18);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4), var(--shadow-lg);
    }
    50% {
        box-shadow: 0 8px 35px rgba(244, 208, 63, 0.6), var(--shadow-lg);
    }
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(15, 30, 46, 0.2);
    box-shadow: none;
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
}

.section-header.align-left {
    text-align: left;
    max-width: 960px;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: #f8f9fb;
}

.services-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: start;
}

.services-intro {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 30px rgba(15, 30, 46, 0.08);
}

.services-intro h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.services-intro p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.service-points li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.65rem;
    transform: translateY(-50%);
}

.services-list {
    display: grid;
    gap: 1rem;
}

.service-row {
    background: white;
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    border: 1px solid #e6e7eb;
    box-shadow: 0 8px 20px rgba(15, 30, 46, 0.05);
}

.service-label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
}

.service-row p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.98rem;
}

.service-footnote {
    margin-top: 2rem;
    font-size: 0.98rem;
    color: var(--text-light);
}

.service-footnote a {
    color: var(--secondary-color);
    font-weight: 700;
}


/* ============================================
   About Section
   ============================================ */
.about {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2.5rem;
}

.about-text {
    padding-right: 1rem;
}

.about-intro {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.intro-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.4rem;
    line-height: 1.85;
}

.about-intro .about-description {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.brand-meaning {
    background: #0f1e2e;
    padding: 2.2rem;
    border-radius: 18px;
    margin: 0;
    box-shadow: 0 20px 40px rgba(15, 30, 46, 0.18);
    border: 1px solid rgba(244, 208, 63, 0.4);
}

.brand-meaning:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 30, 46, 0.25);
}

.brand-meaning-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: white;
    margin: 0 0 0.8rem;
    font-weight: 700;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
}

.brand-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.7;
}

.brand-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

.brand-meaning-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 0.5rem;
}

.feature-item {
    padding: 1.5rem 1.6rem;
    background: #f8f9fb;
    border-radius: 14px;
    border: 1px solid #e6e7eb;
}

.feature-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.45rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.98rem;
    margin: 0;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 50%, #f7f8fa 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Info Section */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    padding: 1.6rem;
    background: #0f1e2e;
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 30, 46, 0.18);
}

.contact-intro h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    margin-bottom: 0.6rem;
    color: white;
}

.contact-intro p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

.contact-card {
    background: white;
    padding: 1.6rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15, 30, 46, 0.06);
    transition: all 0.2s ease;
    border: 1px solid #e7e9ed;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 30, 46, 0.1);
    border-color: rgba(244, 208, 63, 0.5);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(244, 208, 63, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    box-shadow: none;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
    box-shadow: none;
}

.contact-card-content {
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
}

.contact-card-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-text {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-hint {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

.social-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 30, 46, 0.2);
}

/* Contact Form Section */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-gold));
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Manrope', sans-serif;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-submit svg {
    transition: var(--transition);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.btn-submit:active {
    transform: scale(0.98);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-social a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    margin-right: 0.5rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.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);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 0;
    }

    .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);
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-intro {
        padding: 1.6rem;
    }

    .service-row {
        padding: 1.1rem 1.25rem;
    }

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

    .hero-title .highlight::after {
        height: 5px;
        bottom: 3px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .trust-item strong {
        font-size: 1.3rem;
    }

    .btn-cta-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        padding: 1.5rem;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
    }

    /* Contact Section Mobile Refinements */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-info-wrapper {
        gap: 2rem;
    }

    .contact-intro {
        padding: 1.75rem;
        border-radius: 15px;
        text-align: center;
    }

    .contact-intro h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-intro p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .contact-info-grid {
        gap: 1.25rem;
    }

    .contact-card {
        padding: 1.75rem;
        border-radius: 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }

    .contact-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-card-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-card-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .contact-link {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
        word-break: break-word;
    }

    .contact-text {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
        word-break: break-word;
    }

    .contact-hint {
        font-size: 0.85rem;
    }

    .social-link {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
        margin-top: 0.4rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.75rem;
        border-radius: 15px;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-header h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group {
        gap: 0.5rem;
    }

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .btn-submit {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Footer Mobile Refinements */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

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

    .footer-section:first-child {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
        margin: 0;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-section ul li {
        margin-bottom: 0;
        width: 100%;
    }

    .footer-section a {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        display: inline-block;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-social a {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
        margin-right: 0;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .about-text {
        padding-right: 0;
    }

    .about-intro {
        flex-direction: column;
        gap: 1rem;
    }

    .intro-icon {
        font-size: 2.5rem;
    }

    .about-intro .about-description {
        font-size: 1.1rem;
    }

    .brand-meaning {
        padding: 2rem;
    }

    .brand-meaning-header h3 {
        font-size: 1.5rem;
    }

    .brand-meaning-text {
        font-size: 1.1rem;
    }

    .brand-meaning {
        padding: 2.5rem;
        min-height: auto;
    }

    .brand-meaning-header h3 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .feature-item {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-large {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .services-slider-container {
        padding: 0 50px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 600px;
        background-attachment: scroll;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero-title .highlight::after {
        height: 3px;
        bottom: 2px;
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Hide hero features on mobile - too cluttered */
    .hero-features {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .btn-cta-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }

    /* Hide trust indicators on mobile - too much info */
    .hero-trust-indicators {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        display: none;
    }

    .scroll-arrow {
        width: 16px;
        height: 16px;
    }

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

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

    section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .services-intro {
        padding: 1.5rem;
    }

    .service-row {
        padding: 1rem 1.1rem;
    }

    /* Contact Section Small Mobile Refinements */
    .contact {
        padding: 2rem 0;
    }

    .contact-content {
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-info-wrapper {
        gap: 1.75rem;
    }

    .contact-intro {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .contact-intro h3 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .contact-intro p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .contact-info-grid {
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-card-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .contact-link {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .contact-text {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .contact-hint {
        font-size: 0.8rem;
    }

    .social-link {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
        margin-top: 0.35rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 12px;
    }

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

    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1.1rem;
    }

    .form-row {
        gap: 1.1rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.45rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .btn-submit {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        margin-top: 0.4rem;
    }

    /* Footer Small Mobile Refinements */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.75rem;
    }

    .footer-logo {
        margin-bottom: 1rem;
    }

    .footer-logo img {
        height: 40px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }

    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul {
        gap: 0.65rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-social a {
        padding: 0.65rem 1.3rem;
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 550px;
        padding: 1.5rem 0;
    }

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

    .hero-badge {
        padding: 0.4rem 0.9rem;
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .hero-title .highlight::after {
        height: 2px;
        bottom: 1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .btn-cta-primary {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }

    .btn-cta-secondary {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }

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

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

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

    .footer-logo {
        justify-content: center;
    }

    .about-content {
        gap: 2rem;
    }

    .brand-meaning {
        padding: 1.5rem;
    }

    .brand-meaning-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .brand-meaning-header h3 {
        font-size: 1.3rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-content strong {
        font-size: 1.1rem;
    }
}

/* Touch-friendly mobile improvements */
@media (max-width: 768px) {
    .slider-btn {
        width: 45px;
        height: 45px;
        padding: 0;
    }

    .nav-link,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-dot {
        width: 14px;
        height: 14px;
    }

    /* Enhanced touch targets for contact section */
    .contact-card {
        min-height: 44px;
    }

    .contact-link,
    .social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }

    /* Better spacing for contact cards on mobile */
    .contact-card-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Footer touch improvements */
    .footer-section a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    .footer-social a {
        min-height: 44px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        background-attachment: scroll;
    }

    .hero-wipe-overlay {
        animation: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

