* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Add smooth scrolling */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Crimson Text', serif;
        background-color: #1C1C1E;
        color: #f5f5f5;
        line-height: 1.6;
        background-image: 
            radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Flame effect keyframes */
    @keyframes flameFlicker {
        0%, 100% { 
            transform: scaleY(1) scaleX(1);
            filter: hue-rotate(0deg);
        }
        25% { 
            transform: scaleY(1.05) scaleX(0.98);
            filter: hue-rotate(5deg);
        }
        50% { 
            transform: scaleY(1.02) scaleX(1.01);
            filter: hue-rotate(-3deg);
        }
        75% { 
            transform: scaleY(1.03) scaleX(0.99);
            filter: hue-rotate(2deg);
        }
    }

    @keyframes flameGlow {
        0%, 100% { 
            box-shadow: 0 0 20px rgba(255, 100, 0, 0.4), 0 0 40px rgba(255, 150, 0, 0.2), inset 0 0 20px rgba(255, 100, 0, 0.1); 
        }
        50% { 
            box-shadow: 0 0 30px rgba(255, 100, 0, 0.6), 0 0 60px rgba(255, 150, 0, 0.4), inset 0 0 30px rgba(255, 100, 0, 0.2); 
        }
    }

    @keyframes flameText {
        0%, 100% { 
            text-shadow: 0 0 10px rgba(255, 100, 0, 0.6), 0 0 20px rgba(255, 150, 0, 0.4), 0 0 30px rgba(255, 200, 0, 0.2); 
        }
        50% { 
            text-shadow: 0 0 15px rgba(255, 100, 0, 0.8), 0 0 30px rgba(255, 150, 0, 0.6), 0 0 45px rgba(255, 200, 0, 0.4); 
        }
    }

    @keyframes flameBorder {
        0%, 100% { 
            border-color: rgba(255, 100, 0, 0.5);
            box-shadow: 0 0 15px rgba(255, 100, 0, 0.3);
        }
        50% { 
            border-color: rgba(255, 150, 0, 0.7);
            box-shadow: 0 0 25px rgba(255, 100, 0, 0.5);
        }
    }

    /* Header */
    .header {
        padding: 50px 0;
        text-align: center;
        position: relative;
    }

    /* Logo and decorations wrapper */
    .logo-decoration-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
        position: relative;
    }

    /* Navigation links positioned under the decorative forks */
    .nav-link {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        color: #f5f5f5;
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: absolute;
        overflow: hidden;
        white-space: nowrap;
    }

    .nav-link.left {
        left: 0;
        top: 60px;
    }

    .nav-link.right {
        right: 0;
        top: 60px;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255,100,0,0.3), 
            rgba(255,150,0,0.2), 
            transparent
        );
        transition: left 0.3s ease;
    }

    .nav-link:hover::before {
        left: 0;
    }

    .nav-link:hover {
        border-color: rgba(255,100,0,0.6);
        transform: translateY(-2px);
        animation: flameText 1.5s ease-in-out infinite, flameBorder 2s ease-in-out infinite;
    }

    .header-decoration {
        width: 150px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        position: relative;
        transition: all 0.3s ease;
    }

    .header-decoration:hover {
        opacity: 0;
        visibility: hidden;
    }

    .header-decoration::before,
    .header-decoration::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 2px;
        background: rgba(255,255,255,0.2);
        transition: all 0.3s ease;
    }

    .header-decoration:hover::before,
    .header-decoration:hover::after {
        background: rgba(255,100,0,0.6);
    }

    .header-decoration.left::before {
        right: -70px;
        top: -10px;
        transform: rotate(-30deg);
    }

    .header-decoration.left::after {
        right: -70px;
        top: 10px;
        transform: rotate(30deg);
    }

    .header-decoration.right::before {
        left: -70px;
        top: -10px;
        transform: rotate(30deg);
    }

    .header-decoration.right::after {
        left: -70px;
        top: 10px;
        transform: rotate(-30deg);
    }

    /* Make sure tagline spans full width */
    .tagline, .subtitle {
        width: 100%;
    }

    .logo-container {
            background-color: #1C1C1E;
            display: inline-block;
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .logo-container:hover {
            animation: flameGlow 2s ease-in-out infinite;
            border-color: rgba(255,100,0,0.4);
        }

        .logo {
            max-width: 300px;
            height: auto;
            display: block;
            background-color: #1C1C1E;
            transition: all 0.3s ease;
        }



    @keyframes logoFlameGlow {
        0%, 100% { 
            box-shadow: 
                0 0 20px rgba(255, 100, 0, 0.4), 
                0 0 40px rgba(255, 150, 0, 0.2),
                0 8px 32px rgba(0,0,0,0.3);
        }
        50% { 
            box-shadow: 
                0 0 30px rgba(255, 100, 0, 0.6), 
                0 0 60px rgba(255, 150, 0, 0.4),
                0 8px 32px rgba(0,0,0,0.3);
        }
    }

    .tagline {
        font-family: 'Playfair Display', serif;
        font-size: 1.9rem;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 2px;
        background: linear-gradient(45deg, #f5f5f5, #ffffff, #f5f5f5);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 3s ease-in-out infinite;
        transition: all 0.3s ease;
        cursor: default;
    }

    .tagline:hover {
        background: linear-gradient(45deg, #ff6400, #ff9500, #ffb700, #ff6400);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 2s ease-in-out infinite, flameText 1.5s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .subtitle {
        font-size: 1.3rem;
        opacity: 0.9;
        font-style: italic;
        color: #e0e0e0;
        transition: all 0.3s ease;
        cursor: default;
    }

    .subtitle:hover {
        animation: flameText 2s ease-in-out infinite;
        color: #ff9500;
    }

    #flameCanvas {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999;
        pointer-events: none;
        width: 100%;
        height: 100px;
    }
    .gallery-container {
    position: relative;
    margin-bottom: 1rem;
    }

    /* Main Content */
    .main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
        align-items: start;
    }

    .content-section {
        padding: 45px;
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
        border: 2px solid rgba(255,255,255,0.15);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .content-section:hover {
        transform: translateY(-5px);
        animation: flameGlow 2s ease-in-out infinite;
        border-color: rgba(255,100,0,0.4);
    }

    .content-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.3rem;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        padding-bottom: 15px;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .content-section:hover h2 {
        animation: flameText 1.5s ease-in-out infinite;
        border-bottom-color: rgba(255,100,0,0.6);
    }

    .content-section p {
        font-size: 1.15rem;
        margin-bottom: 25px;
        text-align: center;
        position: relative;
        z-index: 2;
        color: #e8e8e8;
    }

    .features {
        list-style: none;
        padding: 0;
        position: relative;
        z-index: 2;
    }

    .features li {
        font-size: 1.1rem;
        margin-bottom: 18px;
        padding-left: 35px;
        position: relative;
        transition: all 0.3s ease;
        color: #e0e0e0;
    }

    .features li:hover {
        color: #ffffff;
        transform: translateX(5px);
        text-shadow: 0 0 10px rgba(255,100,0,0.6);
    }

    .features li::before {
        content: '●';
        position: absolute;
        left: 0;
        font-size: 1.2rem;
        color: #ffc06a;
        animation: pulse 2s infinite;
        transition: all 0.3s ease;
    }

    .features li:hover::before {
        color: #ff6400;
        animation: pulse 2s infinite, flameText 1s ease-in-out infinite;
        transform: scale(1.2);
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.6; }
    }

    /* Call to Action - FIXED SIZING */
    .cta-section {
        text-align: center;
        padding: 50px 40px;
        background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%);
        border: 3px solid rgba(255,255,255,0.2);
        border-radius: 25px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        max-width: 100%;
    }

    .cta-section:hover {
        animation: flameGlow 2s ease-in-out infinite;
        border-color: rgba(255,100,0,0.4);
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        animation: move 25s linear infinite;
    }

   

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        margin-bottom: 20px;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .cta-title:hover {
        animation: flameText 1.5s ease-in-out infinite;
    }

    .phone-number {
        font-family: 'Playfair Display', serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: #f5f5f5;
        text-decoration: none;
        display: inline-block;
        padding: 20px 35px;
                    border-radius: 18px;
        margin: 20px 0;
        transition: all 0.4s ease;
        letter-spacing: 2px;
        background: rgba(0,0,0,0.4);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        position: relative;
        overflow: hidden;
    }

    .phone-number::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255,100,0,0.4), 
            rgba(255,150,0,0.3), 
            transparent
        );
        transition: left 0.6s ease;
    }

    .phone-number:hover::before {
        left: 100%;
    }

    .phone-number:hover {
        background: linear-gradient(135deg, rgba(255,100,0,0.9), rgba(255,150,0,0.8));
        color: #ffffff;
        transform: scale(1.08);
        animation: flameGlow 2s ease-in-out infinite;
        border-color: rgba(255,200,0,0.8);
        text-shadow: 0 0 10px rgba(255,255,255,0.8);
    }

    .cta-text {
        font-size: 1.2rem;
        margin-top: 20px;
        font-style: italic;
        color: #e8e8e8;
    }

    /* Gallery Section */
    .gallery-section {
        margin-bottom: 60px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 35px;
    }

    .gallery-item {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,0.2);
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .gallery-item:hover {
        transform: scale(1.08) rotate(1deg);
        animation: flameGlow 2s ease-in-out infinite;
        border-color: rgba(255,100,0,0.6);
    }

    .gallery-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        background-color: rgba(255,255,255,0.12);
        background-image: 
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 12px,
                rgba(255,255,255,0.08) 12px,
                rgba(255,255,255,0.08) 24px
            );
        transition: all 0.4s ease;
    }

    .gallery-item:hover .gallery-image {
        transform: scale(1.1);
        filter: saturate(1.2) brightness(1.1);
    }

    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.9));
        color: white;
        padding: 25px 18px 18px;
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all 0.4s ease;
    }

    .gallery-item:hover .gallery-overlay {
        background: linear-gradient(transparent, rgba(255,100,0,0.7));
        animation: flameText 2s ease-in-out infinite;
    }

    /* Mobile Gallery Styles */
    @media (max-width: 768px) {
        .header-decoration {
            display: none;
        }

        
        .gallery-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 15px;
            padding: 0 20px;
            margin: 35px -20px 0;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* Internet Explorer 10+ */
        }
        
        /* Hide scrollbar for Chrome, Safari and Opera */
        .gallery-grid::-webkit-scrollbar {
            display: none;
        }
        
        .gallery-item {
            flex: 0 0 85%;
            scroll-snap-align: center;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        
        .gallery-item.active {
            transform: scale(1);
        }
        
        /* Disable hover effects on mobile */
        .gallery-item:hover {
            transform: scale(0.95);
            animation: none;
            border-color: rgba(255,255,255,0.2);
        }
        
        .gallery-item.active:hover {
            transform: scale(1);
        }
        .swipe-indicator {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 1rem 0;
        }
        .swipe-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .swipe-dot.active {
            background-color: #ff6400;
            width: 24px;
            border-radius: 4px;
        }
    }

    /* Hide swipe indicators on desktop */
    @media (min-width: 769px) {
        .swipe-indicator {
            display: none;
        }
    }

    /* Decorative Elements */
    .decorative-border {
        height: 4px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
        margin: 50px 0;
        border-radius: 2px;
        animation: pulse-border 5s infinite ease-in-out;
        transition: all 0.3s ease;
    }

    .decorative-border:hover {
        background: linear-gradient(90deg, transparent, rgba(255,100,0,0.8), transparent);
        animation: pulse-border 3s infinite ease-in-out, flameFlicker 1s ease-in-out infinite;
        height: 6px;
    }

    @keyframes pulse-border {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }

    /* Footer */
    .footer {
        text-align: center;
        padding: 50px 0;
        border-top: 2px solid rgba(255,255,255,0.2);
        font-size: 1.05rem;
        opacity: 0.85;
        color: #d0d0d0;
        transition: all 0.3s ease;
    }

    .footer:hover {
        border-top-color: rgba(255,100,0,0.4);
    }

    .footer p:first-child {
        margin-bottom: 8px;
    }

    .quality-banner {
        text-align: center;
        font-size: 1.1rem;
        font-style: italic;
        color: #fff;
        background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
        padding: 12px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(255,255,255,0.05);
        transition: all 0.3s ease;
    }

    .quality-banner:hover {
        background: linear-gradient(90deg, rgba(255,100,0,0.2), rgba(255,150,0,0.1));
        animation: flameText 2s ease-in-out infinite;
    }

    /* About Section */
    .about-section {
        padding: 70px 45px;
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
        border: 2px solid rgba(255,255,255,0.15);
        border-radius: 20px;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .about-section:hover {
        animation: flameGlow 2s ease-in-out infinite;
        border-color: rgba(255,100,0,0.4);
    }

    .about-section h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        margin-bottom: 30px;
        text-align: center;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        padding-bottom: 20px;
        position: relative;
        z-index: 2;
        transition: all 0.3s ease;
    }

    .about-section:hover h2 {
        animation: flameText 1.5s ease-in-out infinite;
        border-bottom-color: rgba(255,100,0,0.6);
    }

    .about-section p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        z-index: 2;
        color: #e8e8e8;
        line-height: 1.8;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .logo-decoration-wrapper {
            flex-direction: column;
            gap: 20px;
            padding-bottom: 60px;
        }

        .nav-link.left,
        .nav-link.right {
            position: static;
            margin: 10px;
        }

        .main-content {
            grid-template-columns: 1fr;
            gap: 35px;
        }

        .tagline {
            font-size: 1.5rem;
        }

        .cta-section {
            padding: 40px 30px;
        }
        
        .cta-title {
            font-size: 2.2rem;
        }

        .phone-number {
            font-size: 2rem;
            padding: 15px 25px;
            letter-spacing: 1px;
        }
        
        .quality-banner {
            font-size: 1rem;
            padding: 10px;
        }
        
        .cta-text {
            font-size: 1.1rem;
        }

        .content-section {
            padding: 30px;
        }

        .content-section h2 {
            font-size: 1.9rem;
        }

        .about-section {
            padding: 50px 30px;
        }

        .about-section h2 {
            font-size: 2.2rem;
        }

        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }

        .logo {
            max-width: 250px;
        }

        .nav-link {
            font-size: 1rem;
            padding: 6px 12px;
        }

        .cta-section {
            padding: 35px 25px;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }

        .phone-number {
            font-size: 1.6rem;
            padding: 12px 20px;
        }
        
        .quality-banner {
            font-size: 0.9rem;
            padding: 8px;
        }
        
        .cta-text {
            font-size: 1rem;
        }

        .about-section h2 {
            font-size: 1.8rem;
        }
    }


.seo-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}