/* Premium Design System & Variables */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FFB800; /* Premium Taxi Gold */
    --primary-dark: #E6A600;
    --primary-light: #FFF8E5;
    --secondary: #0A0F1C; /* Deep Midnight */
    --secondary-light: #161F36;
    --accent: #22C55E; /* Modern Green */
    --text: #1E293B;
    --text-light: #64748B;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(10, 15, 28, 0.05);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-colored: 0 10px 25px -5px rgba(255, 184, 0, 0.4);
    
    /* Radii */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
    --gradient-dark: linear-gradient(135deg, #0A0F1C 0%, #161F36 100%);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg-gradient);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 7rem 0;
}

.alt-bg {
    background-color: var(--bg-light);
}

.center {
    text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h1 span, h2 span {
    color: var(--primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
}

/* Internal Page Header */
.page-header {
    background: var(--gradient-dark);
    padding: 11rem 0 7rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.5;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 60%);
    transform: rotate(30deg);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header h1 span {
    background: none;
    -webkit-text-fill-color: var(--primary);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--primary);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--secondary);
    box-shadow: var(--shadow-colored);
    border: none;
    background-size: 200% auto;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(255, 184, 0, 0.6);
}


.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glass Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-slow);
    background-color: transparent;
}

.header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
}


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

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

.logo img {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    max-height: 60px;
}


.nav ul {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    font-weight: 600;
    color: var(--secondary-light);
    font-size: 1rem;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav a:hover {
    color: var(--primary-dark);
}

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

.nav a.active {
    color: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    background: rgba(0,0,0,0.05);
}

/* Dynamic Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 184, 0, 0.2);
    gap: 0.5rem;
}

.badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
}

/* Glass Quick Services */
.quick-services {
    margin-top: -6rem;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

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

.icon-box {
    width: 5rem;
    height: 5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    transform: rotate(-5deg);
}

.service-card:hover .icon-box {
    background: var(--gradient-primary);
    color: var(--secondary);
    transform: rotate(0) scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-list {
    margin: 2.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary-light);
}

.feature-list i {
    color: var(--accent);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
}

.section-image {
    position: relative;
}

.section-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px dashed var(--primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    transition: var(--transition);
}

.section-image:hover::before {
    transform: translate(10px, 10px);
}

.section-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Premium Vehicle Cards */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.vehicle-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.vehicle-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.vehicle-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.vehicle-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.08);
}

.vehicle-info {
    padding: 2rem;
    position: relative;
}

.vehicle-tag {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-colored);
    z-index: 2;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vehicle-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.vehicle-price {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.vehicle-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Dynamic Earn Section */
.earn-banner {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.earn-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero.png') center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.earn-banner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.earn-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.earn-steps {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-top: 2px dashed rgba(255,255,255,0.4);
    background: none;
}

.step span {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.step p {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

/* Glass Contact Form */
.contact-form-box {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--bg-light);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 184, 0, 0.15);
}

.contact-details {
    margin-top: 3rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.detail:hover {
    background: var(--bg-light);
    transform: translateX(10px);
}

.detail i {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
}

.detail p {
    font-weight: 500;
    color: var(--secondary-light);
    margin: 0;
}

/* Premium Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 2rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 400px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

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

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icons a {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.floating-btn i {
    width: 24px;
    height: 24px;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0.4;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp {
    background-color: #25d366;
}

.phone {
    background-color: var(--secondary);
}

.scroll-top {
    background-color: var(--white);
    color: var(--secondary);
    display: none;
    cursor: pointer;
}

.scroll-top.visible {
    display: flex;
}


/* Responsive Overhaul */
@media (max-width: 1024px) {
    .services-grid, .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-2 {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-slow);
        z-index: 1000;
        padding: 2rem;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav a {
        font-size: 1.5rem;
    }

    .header .btn-primary {
        display: none;
    }


    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .inv {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-bg::after {
        background: linear-gradient(to top, rgba(255,255,255,1) 5%, rgba(255,255,255,0.7) 100%);
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 7rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .earn-steps {
        flex-direction: column;
        gap: 2.5rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-image::before {
        display: none;
    }
    
    .contact-form-box {
        padding: 2rem;
    }
}

/* Premium Animations */
[data-reveal] {
    opacity: 0;
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="up"] { transform: translateY(40px); }

.revealed {
    opacity: 1;
    transform: translate(0) !important;
}

/* Fix for mobile navigation toggle icon */
.mobile-toggle.active i {
    transform: rotate(90deg);
}

