   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #F77F00;
            --dark-color: #1A1A2E;
            --light-color: #F5F5F5;
            --text-color: #333;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            background: var(--dark-color);
            color: white;
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .header-top-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 2rem;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

        .header-main {
            padding: 1rem 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo i {
            font-size: 2.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 127, 0, 0.9)),
                url('https://picsum.photos/seed/wedding-hero/1920/600') center/cover;
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* Service Detail */
        .service-detail {
            padding: 4rem 0;
            background: white;
        }

        .service-detail:nth-child(even) {
            background: var(--light-color);
        }

        .service-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .service-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .service-hero-text h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
        }

        .service-hero-text p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .service-hero-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .service-features {
            margin-bottom: 3rem;
        }

        .service-features h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-text h4 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        .feature-text p {
            color: #666;
            font-size: 0.9rem;
        }

        .service-process {
            margin-bottom: 3rem;
        }

        .service-process h3 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--primary-color);
        }

        .process-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .process-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .process-content {
            width: 45%;
            background: var(--light-color);
            padding: 2rem;
            border-radius: var(--border-radius);
        }

        .process-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            z-index: 1;
        }

       .price-table-wrapper {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.price-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
}

.price-table th {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.price-table tbody tr:hover {
    background: #fff5f2;
}

.price-table tbody td:last-child {
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}


        /* Gallery Section */
        .gallery-section {
            padding: 4rem 0;
            background: var(--light-color);
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            cursor: pointer;
            height: 250px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(50px) scale(0.9);
        }

        .gallery-item.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.05) rotate(1deg);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.2);
            z-index: 10;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .gallery-item:hover img {
            transform: scale(1.15) rotate(-1deg);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .gallery-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        /* Lightbox Modal */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 1rem;
            max-width: 80%;
        }

        .lightbox-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
            background: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-close:hover {
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 1rem;
            transition: var(--transition);
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            color: var(--primary-color);
            background: rgba(0, 0, 0, 0.7);
        }

        .lightbox-prev {
            left: -60px;
        }

        .lightbox-next {
            right: -60px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -40px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-size: 1rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary-color);
        }

        .btn-white:hover {
            background: var(--light-color);
        }

        .btn-transparent {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-transparent:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            margin-bottom: 1rem;
            color: white;
        }

        .footer-column p {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(60px) scale(0.9);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: scale(0.5) rotate(-5deg);
            }

            50% {
                transform: scale(1.1) rotate(2deg);
            }

            100% {
                opacity: 1;
                transform: scale(1) rotate(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-top {
                display: none;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            }

            nav ul.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .service-hero {
                grid-template-columns: 1fr;
            }

            .process-item {
                flex-direction: column !important;
            }

            .process-content {
                width: 100%;
            }

            .process-timeline::before {
                left: 20px;
            }

            .process-number {
                left: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            /* Lightbox responsive adjustments */
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
            }
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--dark-color);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 3000;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast.success {
            background: #4CAF50;
        }

        .toast.error {
            background: #f44336;
        }
         /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 80px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF6B35, #F77F00);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(100px);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #F77F00, #FF6B35);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        }

        .back-to-top:active {
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 70px;
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
        }

        /* Medium screen responsive for gallery slider */
        @media (min-width: 769px) and (max-width: 1024px) {
            .gallery-slide {
                flex: 0 0 calc(50% - 14px);
            }

            .review-slide {
                flex: 0 0 calc(50% - 14px);
            }
        }

        .float-button {
            text-decoration: none;
            position: fixed;
            padding: 10px;
            padding-right: 15px;
            bottom: 90px;
            right: 30px;
            color: #fff;
            background-color: #25D366;
            border-radius: 25px 30px 5px 25px;
            z-index: 100;
            font-family: Arial;
            font-size: 17px;
            animation: whatsapp-animation 0.5s ease-in-out;
            box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
            transition: all 0.3s ease-out;
        }

        .float-button:hover {
            background-color: #128C7E;
            color: #fff;
        }

        .fa-whatsapp {
            font-size: 20px !important;
            padding-right: 5px;
            padding-left: 5px;
        }

        @keyframes whatsapp-animation {
            from {
                opacity: 0%;
            }

            to {
                opacity: 100%
            }
        }

        @media screen and (max-width: 545px) {
            .float-button {
                bottom: 75px;
                right: 20px;
                padding: 8px 12px;
                font-size: 14px;
                border-radius: 20px;
            }

            .fa-whatsapp {
                font-size: 18px !important;
                padding-right: 4px;
            }
        }

        /* Floating Action Buttons - CodePen Style */
        .btn-floating {
            position: fixed;
            right: 25px;
            overflow: hidden;
            width: 50px;
            height: 50px;
            border-radius: 100px;
            border: 0;
            z-index: 9999;
            color: white;
            transition: .2s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            padding: 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .btn-floating:hover {
            width: auto;
            padding: 0 20px;
            justify-content: flex-start;
        }

        .btn-floating i {
            font-size: 24px;
            min-width: 24px;
        }

        .btn-floating span {
            display: none;
            margin-left: 10px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            transition: .2s;
        }

        .btn-floating:hover span {
            display: inline-block;
        }

        /* Phone Button - Dark Red */
        .btn-floating.phone {
            bottom: 85px;
            background-color: #760f10;
        }

        .btn-floating.phone:hover {
            background-color: #c03421;
        }

        /* WhatsApp Button - Green */
        .btn-floating.whatsapp {
            bottom: 25px;
            background-color: #34af23;
        }

        .btn-floating.whatsapp:hover {
            background-color: #1f7a12;
        }

        /* Mobile Responsive */
        @media screen and (max-width: 545px) {
            .btn-floating {
                width: 45px;
                height: 45px;
                right: 20px;
            }

            .btn-floating i {
                font-size: 20px;
            }

            .btn-floating:hover {
                padding: 0 15px;
            }

            .btn-floating span {
                font-size: 12px;
                margin-left: 8px;
            }

            .btn-floating.phone {
                bottom: 75px;
            }
        }
        .search-container {
  position: relative;
}
