/* ====================================
   Custom Elegance - Premium Auto Styling
   Black & Gold Luxury Theme
   ==================================== */

/* CSS Variables */
:root {
    /* Colors */
    --black: #000000;
    --black-light: #0a0a0a;
    --black-lighter: #111111;
    --black-card: #0d0d0d;
    --gold: #c9a227;
    --gold-light: #d4b13d;
    --gold-dark: #a88a1f;
    --gold-glow: rgba(201, 162, 39, 0.3);
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-subtle: rgba(255, 255, 255, 0.5);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-link,
    .social-link,
    input,
    select,
    textarea,
    button {
        min-height: 44px;
    }
    
    .gallery-item:hover img {
        transform: none;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Safe area for notched phones */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Selection */
::selection {
    background-color: var(--gold);
    color: var(--black);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

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

/* ====================================
   Navigation
   ==================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.02);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-muted);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-cta {
    background-color: var(--gold);
    color: var(--black) !important;
    padding: 12px 24px !important;
    border-radius: 0;
}

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

.nav-cta:hover {
    background-color: var(--gold-light);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: transform var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* ====================================
   Hero Section
   ==================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 40%, rgba(201, 162, 39, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 40%),
        var(--black);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}

.hero-logo-container {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
}

.hero-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(201, 162, 39, 0.25));
}

.hero-car-icon {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(201, 162, 39, 0.3));
    margin-bottom: 10px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin: 0;
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.3);
}

.brand-services {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.8vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: 10px;
    opacity: 0.8;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white-muted);
    letter-spacing: 0.15em;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeIn 1s ease 1s forwards;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-subtle);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ====================================
   Buttons
   ==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 44px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 40px var(--gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white-subtle);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full {
    width: 100%;
}

/* ====================================
   Section Styling
   ==================================== */

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
}

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

/* ====================================
   Services Section
   ==================================== */

.services {
    padding: var(--section-padding) 0;
    background-color: var(--black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(145deg, var(--black-card), var(--black-lighter));
    border: 1px solid rgba(201, 162, 39, 0.1);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-wide {
    grid-column: span 2;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
}

.service-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.9;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.service-features li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-left: 16px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    padding-top: 20px;
}

.service-link span {
    transition: transform var(--transition-fast);
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ====================================
   Why Us Section
   ==================================== */

.why-us {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.feature {
    text-align: center;
    padding: 40px 32px;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

/* ====================================
   Protection Section
   ==================================== */

.protection-section {
    padding: var(--section-padding) 0;
    background-color: var(--black);
    overflow: hidden;
}

.protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.protection-text p {
    font-size: 1.1rem;
    color: var(--white-muted);
    margin-bottom: 40px;
    line-height: 1.9;
}

.protection-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.protection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--black-card);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: all var(--transition-fast);
}

.protection-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.protection-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.protection-icon svg {
    width: 100%;
    height: 100%;
}

.protection-item span {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.protection-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-graphic {
    width: 300px;
    height: 360px;
    color: var(--gold);
}

.shield-graphic svg {
    width: 100%;
    height: 100%;
}

.shield-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawShield 2s ease forwards;
}

.shield-inner {
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.shield-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.5s ease 2s forwards;
}

/* ====================================
   Gallery Section
   ==================================== */

.gallery {
    padding: var(--section-padding) 0;
    background-color: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--black-card), var(--black-lighter));
    border: 1px solid rgba(201, 162, 39, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-medium);
}

.gallery-placeholder:hover {
    border-color: var(--gold);
    background: linear-gradient(145deg, var(--black-lighter), var(--black-card));
}

.gallery-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.gallery-placeholder p {
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ====================================
   Testimonials Section
   ==================================== */

.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--black);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--black-card), var(--black-lighter));
    border: 1px solid rgba(201, 162, 39, 0.1);
    padding: 40px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 500;
    color: var(--white);
}

.author-service {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ====================================
   Contact Section
   ==================================== */

.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--white-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--white-muted);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
}

.social-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.social-link:hover svg {
    stroke: var(--black);
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--black-card), var(--black-lighter));
    border: 1px solid rgba(201, 162, 39, 0.1);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-subtle);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a227' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background-color: var(--black);
    color: var(--white);
}

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

/* Form Validation Styles */
.error-message {
    display: none;
    color: #ff4444;
    font-size: 0.75rem;
    margin-top: 4px;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.05);
}

.form-group.success input,
.form-group.success select {
    border-color: #44bb44;
}

/* ====================================
   Footer
   ==================================== */

.footer {
    background-color: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links li {
    font-size: 0.9rem;
    color: var(--white-muted);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--white-subtle);
}

.footer-bottom p:last-child {
    color: var(--gold);
    letter-spacing: 0.2em;
}

/* ====================================
   Animations
   ==================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

@keyframes drawShield {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* AOS-like animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Animation delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-wide {
        grid-column: span 2;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .protection-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .protection-visual {
        order: -1;
    }
    
    .shield-graphic {
        width: 200px;
        height: 240px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Mobile Navigation */
    .navbar {
        padding: 16px 0;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right var(--transition-medium);
        border-left: 1px solid rgba(201, 162, 39, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-top: 16px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .hero-logo-container {
        margin-bottom: 30px;
    }
    
    .hero-logo {
        max-width: 85vw;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0 24px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 32px;
    }
    
    .scroll-indicator {
        bottom: 24px;
    }
    
    .scroll-line {
        height: 40px;
    }
    
    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 48px;
        padding: 0 16px;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-card-wide {
        grid-column: span 1;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-desc {
        font-size: 1rem;
    }
    
    .service-features {
        gap: 8px 12px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature {
        padding: 32px 24px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    
    .feature-number {
        font-size: 2.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .feature-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .feature-desc {
        font-size: 1rem;
    }
    
    /* Protection Section Mobile */
    .protection-content {
        gap: 40px;
    }
    
    .protection-text p {
        font-size: 1rem;
    }
    
    .protection-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .protection-item {
        padding: 16px 12px;
    }
    
    .protection-icon {
        width: 28px;
        height: 28px;
    }
    
    .protection-item span {
        font-size: 0.75rem;
    }
    
    .shield-graphic {
        width: 160px;
        height: 192px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-overlay {
        padding: 30px 20px 20px;
    }
    
    .gallery-overlay span {
        font-size: 1.4rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-slider {
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 10px;
        right: 20px;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-service {
        font-size: 0.75rem;
    }
    
    /* Contact Mobile */
    .contact-wrapper {
        gap: 48px;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        height: 50px;
        margin: 0 auto 20px;
    }
    
    .footer-brand p {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-links h4 {
        margin-bottom: 16px;
    }
    
    .footer-links ul {
        gap: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .hero-logo {
        max-width: 90vw;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
        letter-spacing: 0.15em;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-label {
        font-size: 0.7rem;
    }
    
    .service-card {
        padding: 28px 20px;
    }
    
    .service-title {
        font-size: 1.35rem;
    }
    
    .service-desc {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    .feature {
        padding: 24px 16px;
        gap: 16px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-desc {
        font-size: 0.95rem;
    }
    
    .protection-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .protection-item {
        padding: 12px 8px;
    }
    
    .protection-icon {
        width: 24px;
        height: 24px;
    }
    
    .protection-item span {
        font-size: 0.65rem;
    }
    
    .gallery-overlay span {
        font-size: 1.25rem;
    }
    
    .gallery-overlay p {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .footer-logo {
        height: 44px;
    }
}

