* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-white: #ffffff;
    --accent-gray: #666666;
    --off-white: #f8f8f8;
    --text-gray: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Removed custom cursor */

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-gray);
    overflow-x: hidden;
    line-height: 1.6;
    background: #000;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
    a, button, .btn, .nav-link, .service-card, .contact-card {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all 0.5s ease;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.loader-logo {
    width: 100%;
    height: 100%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(-100%);
}

nav.visible {
    transform: translateY(0);
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-white);
}

.nav-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.nav-logo span {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

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

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-white);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    transition: all 0.3s ease;
}

/* Mobile Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    border-radius: 50%;
    text-decoration: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s ease infinite;
}

.mobile-call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: var(--primary-white);
    color: var(--primary-black);
}

.mobile-call-button i {
    font-size: 1.4rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Show mobile call button only on mobile devices */
@media (max-width: 768px) {
    .mobile-call-button {
        display: flex;
        bottom: 25px;
        right: 15px;
        width: 56px;
        height: 56px;
    }
    
    /* Hide back-to-top button on mobile for cleaner interface */
    .back-to-top {
        display: none;
    }
    
    /* Navigation improvements */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-logo span {
        font-size: 0.9rem;
        letter-spacing: -0.5px;
    }
    
    .nav-menu {
        padding: 2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    .nav-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .mobile-menu-toggle {
        z-index: 1002;
        margin-top: 8px;
    }
}

/* Hero Section Enhanced */
.hero {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-white);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 10s infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: heroFadeIn 1s ease;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--primary-white);
    font-weight: 300;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-white);
    font-weight: 600;
}

.hero-feature i {
    color: var(--primary-white);
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn-primary {
    background: var(--primary-white);
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    backdrop-filter: blur(10px);
}

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

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0.8;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-white);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--primary-white);
}

.hero-visual {
    position: relative;
    animation: heroFadeIn 1s ease 0.3s backwards;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.hero-logo {
    width: 80%;
    max-width: 350px;
    filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.3));
}

/* About Us Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.about-text .section-badge {
    display: inline-block;
}

.about-text .section-title {
    color: var(--primary-white);
}

.about-text .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: none;
}

.about-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-white) 0%, #e0e0e0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    text-align: left;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 600;
}

.overlay-badge i {
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--primary-white);
}

.gallery-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    color: var(--primary-black);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.6;
    animation: slideHint 2s ease-in-out infinite;
}

.gallery-scroll-hint i {
    font-size: 1rem;
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

.gallery-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

/* Hide scroll hint when user starts scrolling */
.gallery-grid:hover ~ .gallery-scroll-hint,
.gallery-grid:active ~ .gallery-scroll-hint {
    opacity: 0;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 auto;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: auto;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--primary-white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.gallery-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        margin-top: 8px;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .hero-text .subtitle {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-logo-container {
        order: -1;
        height: 400px;
    }
    
    /* Tablet typography improvements */
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    /* Services grid for tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        height: 380px;
    }
    
    /* Gallery tablet - keep horizontal scroll */
    .gallery-item {
        max-width: 350px;
    }
    
    .gallery-item img {
        height: 260px;
    }
}

@media (max-width: 640px) {
    /* Navigation adjustments for longer business name */
    .nav-container {
        padding: 0.75rem 0.75rem;
    }
    
    .nav-logo {
        gap: 0.75rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-logo span {
        font-size: 0.8rem;
        letter-spacing: -0.3px;
        white-space: nowrap;
    }
    
    .hero {
        padding: 6rem 1rem 3rem 1rem;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        padding: 0 1rem;
        gap: 2rem;
        justify-content: center;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        text-align: center;
        letter-spacing: -1px;
    }

    .hero-text .subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-align: center;
        max-width: 400px;
        line-height: 1.4;
    }
    
    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-feature {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
        border-radius: 50px;
        font-weight: 700;
    }
    
    .trust-badges {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-logo-container {
        display: none;
    }
    
    /* Ensure back to top button is hidden on smallest mobile devices */
    .back-to-top {
        display: none !important;
    }
}


/* Stats Ticker */
.stats-ticker {
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.stats-ticker-content {
    display: flex;
    will-change: transform;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.stat-item i {
    color: var(--primary-white);
    font-size: 1.5rem;
}

.stat-item strong {
    color: var(--primary-white);
    font-size: 1.2rem;
}

.stat-item span {
    color: #999;
}

/* Services Section Enhanced */
.services {
    padding: 8rem 2rem;
    background: var(--off-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-black);
    letter-spacing: -2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: rotateY(180deg);
}

.service-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}

.service-card-front {
    background: var(--primary-white);
}

.service-card-back {
    background: linear-gradient(135deg, var(--primary-black), #222);
    color: var(--primary-white);
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-card-back h3 {
    color: var(--primary-white);
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-card-back p {
    color: #ccc;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-white);
}

.service-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 8rem 2rem;
    background: var(--primary-white);
    position: relative;
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: var(--primary-black);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-service {
    flex: 1;
}

.pricing-service h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-left: 2rem;
}

.pricing-from {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-black);
    line-height: 1;
}

.pricing-gst {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-quote {
    font-size: 1.2rem;
    color: var(--primary-black);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    border-radius: 8px;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Process Timeline */
.process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 1200px;
    margin: 4rem auto 0;
    position: relative;
}


.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.timeline-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-black);
    border: 3px solid var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-step.active .step-number {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: scale(1.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.step-content p {
    opacity: 0.8;
    font-size: 1.05rem;
}

/* Testimonials Carousel */
.testimonials {
    padding: 8rem 2rem;
    background: var(--off-white);
    position: relative;
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
}

.testimonial-slide {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-slide::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-black);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: #555;
    flex-grow: 1;
    display: flex;
    align-items: center;
    min-height: 120px;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--primary-black);
    font-size: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-black);
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-black);
    background: transparent;
    color: var(--primary-black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* Contact Section Enhanced */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: var(--primary-white);
    position: relative;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    animation: fadeInLeft 1.2s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-white);
    color: var(--primary-black);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.contact-card-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-card-content a {
    color: var(--primary-white);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    animation: fadeInRight 1.2s ease-out;
}

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

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

.form-group {
    position: relative;
}

.form-group.half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-white);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--primary-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-white);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select {
    cursor: pointer;
}

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

.form-submit {
    margin-top: 2rem;
}

.form-submit button {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-submit button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
}

/* Footer Enhanced */
footer {
    background: #000;
    color: var(--primary-white);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-white);
}

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

.footer-bottom p {
    opacity: 0.6;
}

.footer-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
}

.footer-badge i {
    color: var(--primary-white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-white);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}


/* Responsive for contact and footer */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

}

@media (max-width: 640px) {
    /* Typography */
    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    /* About section mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-details {
        gap: 1.5rem;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .about-cta {
        text-align: center;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .overlay-badge {
        font-size: 0.9rem;
    }
    
    .overlay-badge i {
        font-size: 1.2rem;
    }
    
    /* Gallery mobile - keep horizontal scroll */
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-scroll-hint {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .gallery-scroll-hint i {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 1rem 1rem 1rem;
    }
    
    .gallery-item {
        max-width: 280px;
    }
    
    .gallery-item img {
        height: 210px;
    }
    
    .gallery-content i {
        font-size: 2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }

    /* Sections padding */
    .services,
    .process,
    .testimonials,
    .contact {
        padding: 4rem 1rem;
        text-align: center;
    }
    
    /* Better mobile section spacing */
    .process .section-header,
    .testimonials .section-header,
    .contact .section-header {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    /* Services */
    .services {
        padding: 4rem 1.5rem;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        text-align: center;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .service-card {
        height: auto;
        min-height: 320px;
        padding: 0;
        border-radius: 25px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        cursor: default;
        transform-style: flat !important;
        transform: none !important;
        background: var(--primary-white);
        position: relative;
        overflow: visible;
        width: 100%;
        margin: 0 auto;
        perspective: none !important;
    }
    
    .service-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .service-card-face {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        backface-visibility: visible !important;
        transform: none !important;
        padding: 2.5rem 2rem;
        display: flex !important;
        flex-direction: column;
    }
    
    .service-card-back {
        display: none !important;
    }
    
    .service-card-front {
        background: transparent !important;
        position: static !important;
    }
    
    .service-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        display: block;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #555;
    }
    
    .service-cta {
        text-align: center;
        margin-top: auto;
        padding-top: 1rem;
    }
    
    .service-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        background: var(--primary-black);
        color: var(--primary-white);
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        justify-content: center;
        min-width: 140px;
    }
    
    .service-link:hover {
        background: var(--primary-white);
        color: var(--primary-black);
        border: 2px solid var(--primary-black);
        transform: translateY(-2px);
    }
    
    /* Pricing mobile styles */
    .pricing {
        padding: 4rem 1.5rem;
    }
    
    .pricing-content {
        gap: 1.25rem;
        max-width: 100%;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .pricing-service {
        width: 100%;
        text-align: center;
    }
    
    .pricing-service h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .pricing-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .pricing-amount {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .pricing-quote {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin: 0 auto;
    }
    
    .pricing-cta {
        margin-top: 2rem;
    }
    
    .service-features {
        display: none;
    }
    
    /* Stats ticker */
    .stat-item {
        padding: 0 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
    
    .stat-item i {
        font-size: 1.2rem;
    }
    
    .stat-item strong {
        font-size: 1rem;
    }
    
    .stat-item span {
        font-size: 0.85rem;
    }
    
    /* Process timeline */
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonials-carousel {
        margin: 2rem auto 0;
        max-width: 380px;
    }
    
    .testimonial-slide {
        padding: 2rem;
        height: 420px;
        max-height: 420px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .testimonial-content {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        height: 140px;
        max-height: 140px;
        overflow: hidden;
        display: flex;
        align-items: center;
        text-align: center;
        flex-shrink: 0;
    }
    
    .testimonial-rating {
        margin-bottom: 1rem;
        flex-shrink: 0;
    }
    
    .testimonial-author {
        margin-top: auto;
        flex-shrink: 0;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-controls {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-group.half {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .form-submit button {
        padding: 1.25rem;
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-badges {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
