* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background-color: #f5f1eb;
            color: #3a3a3a;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 60px;
            background-color: #f5f1eb;
            position: relative;
            z-index: 100;
        }

        .nav-links {
            display: flex;
            gap: 60px;
            list-style: none;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links a {
            text-decoration: none;
            color: #3a3a3a;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #a67c52;
        }

        /* Logo */
        .logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .logo-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 5px;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 2px;
            color: #3a3a3a;
        }

        .logo p {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #6a6a6a;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 60px 80px;
            min-height: 85vh;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f1eb 0%, #e8dfd5 100%);
        }

        .hero-content {
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-content h2 {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 5px;
            font-weight: 400;
        }

        .hero-content h3 {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 5px;
        }

        /* Photo Grid */
        .photo-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
            position: relative;
        }

        .photo-item {
            position: relative;
            overflow: hidden;
            background-color: #d4c4b0;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .photo-item:hover img {
            transform: scale(1.08);
        }

        .photo-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(166, 124, 82, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .photo-item:hover::after {
            opacity: 1;
        }

        .photo-left {
            height: 400px;
        }

        .photo-center {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .photo-right {
            height: 400px;
        }

        /* Floral Decorations */
        .floral-left, .floral-right {
            position: absolute;
            opacity: 0.3;
            pointer-events: none;
            animation: floatFloral 6s ease-in-out infinite;
        }

        @keyframes floatFloral {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floral-left {
            left: 0;
            bottom: 0;
            width: 250px;
        }

        .floral-right {
            right: 0;
            top: 0;
            width: 200px;
        }

        /* Main CTA */
        .main-cta {
            text-align: center;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-heading {
            font-size: 72px;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            animation: slideInLeft 1.2s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .main-subheading {
            font-size: 68px;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 30px;
            color: #a67c52;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInRight 1.2s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .tagline {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .cta-text {
            max-width: 500px;
            margin: 0 auto 30px;
            line-height: 1.6;
            font-size: 14px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: #a67c52;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 11px;
            transition: all 0.4s ease;
            border: 2px solid #a67c52;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            background-color: #8b6339;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(166, 124, 82, 0.5);
        }

        /* Bottom Section */
        .bottom-section {
            background-color: #4a4a3a;
            color: #fff;
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin: 60px 80px;
        }

        .badge-section {
            padding: 80px 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge {
            width: 280px;
            height: 280px;
            position: relative;
        }

        .text-section {
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .text-section h3 {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .text-section p {
            line-height: 1.8;
            font-size: 14px;
            color: #d4d4d4;
        }

        /* Circular Badge SVG */
        .circular-text {
            animation: rotate 20s linear infinite;
            transform-origin: center;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Photo Showcase */
        .photo-showcase {
            padding: 80px;
            background: linear-gradient(180deg, #f5f1eb 0%, #fff 100%);
            position: relative;
        }

        .photo-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #a67c52, transparent);
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .showcase-header h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #3a3a3a;
        }

        .showcase-header p {
            font-size: 14px;
            color: #6a6a6a;
            letter-spacing: 1px;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .showcase-item {
            height: 400px;
            overflow: hidden;
            background-color: #d4c4b0;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

        .showcase-item::before {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 5;
            pointer-events: none;
        }

        .showcase-item:hover::before {
            opacity: 0.9;
        }

        .showcase-item img,
        .showcase-item svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .showcase-item:hover {
            transform: translateY(-15px) rotate(2deg);
            box-shadow: 0 15px 40px rgba(166, 124, 82, 0.3);
        }

        .showcase-item:hover img,
        .showcase-item:hover svg {
            transform: scale(1.15);
        }

        /* Rates Section */
        .rates-section {
            padding: 100px 80px;
            background: linear-gradient(135deg, #fff 0%, #f9f6f2 100%);
            position: relative;
        }

        .rates-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #a67c52, transparent);
        }

        .rates-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .rates-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .rates-header h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #3a3a3a;
        }

        .rates-header p {
            font-size: 14px;
            color: #6a6a6a;
            letter-spacing: 1px;
        }

        .rates-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .rate-card {
            background-color: #f5f1eb;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .rate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            border: 2px solid transparent;
            transition: border-color 0.4s;
        }

        .rate-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 45px rgba(166, 124, 82, 0.25);
        }

        .rate-card:hover::before {
            border-color: #a67c52;
        }

        .rate-card.featured {
            background: linear-gradient(135deg, #4a4a3a 0%, #3a3a2a 100%);
            color: #fff;
            transform: scale(1.08);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        .rate-card.featured:hover {
            transform: translateY(-15px) scale(1.1);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: #a67c52;
            color: #fff;
            padding: 5px 15px;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .rate-card h3 {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .rate-card.featured h3 {
            color: #fff;
        }

        .price {
            font-size: 48px;
            font-weight: 300;
            margin-bottom: 30px;
            color: #a67c52;
        }

        .rate-card.featured .price {
            color: #d4c4b0;
        }

        .rate-features {
            list-style: none;
            margin-bottom: 40px;
            text-align: left;
        }

        .rate-features li {
            padding: 12px 0;
            border-bottom: 1px solid #d4c4b0;
            font-size: 14px;
            color: #6a6a6a;
        }

        .rate-card.featured .rate-features li {
            border-bottom-color: #6a6a6a;
            color: #d4d4d4;
        }

        .rate-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: #a67c52;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 11px;
            transition: all 0.4s ease;
            border: 2px solid #a67c52;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }

        .rate-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .rate-button:hover::before {
            left: 100%;
        }

        .rate-button:hover {
            background-color: #8b6339;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(166, 124, 82, 0.4);
        }

        .rate-card.featured .rate-button {
            background-color: #d4c4b0;
            border-color: #d4c4b0;
            color: #3a3a3a;
        }

        .rate-card.featured .rate-button:hover {
            background-color: transparent;
            color: #d4c4b0;
        }

        /* Video Showcase Section */
        .video-section {
            padding: 100px 80px;
            background: linear-gradient(180deg, #fff 0%, #f5f1eb 100%);
            position: relative;
        }

        .video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #a67c52, transparent);
        }

        .video-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .video-category {
            margin-bottom: 100px;
        }

        .video-category:last-child {
            margin-bottom: 0;
        }

        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .category-header h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #3a3a3a;
            letter-spacing: 2px;
        }

        .category-header p {
            font-size: 14px;
            color: #6a6a6a;
            letter-spacing: 1px;
            font-style: italic;
        }

        .video-grid-three {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .video-item {
            background: linear-gradient(135deg, #f5f1eb 0%, #e8dfd5 100%);
            padding: 25px;
            transition: all 0.4s ease;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            position: relative;
        }

        .video-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 15px;
            border: 2px solid transparent;
            transition: border-color 0.4s;
            pointer-events: none;
        }

        .video-item:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 15px 40px rgba(166, 124, 82, 0.25);
        }

        .video-item:hover::after {
            border-color: #a67c52;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            background-color: #d4c4b0;
            margin-bottom: 20px;
            cursor: pointer;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .video-wrapper:hover {
            box-shadow: 0 6px 25px rgba(166, 124, 82, 0.3);
            transform: scale(1.02);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Lightbox for enlarged video */
        .video-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 40px;
        }

        .video-lightbox.active {
            display: flex;
        }

        /* Photo Lightbox */
        .photo-lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .photo-lightbox.active {
            display: flex;
        }

        .photo-lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            animation: zoomIn 0.3s ease-out;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .photo-lightbox-content img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .photo-lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            padding: 10px;
            line-height: 1;
            transition: color 0.3s;
            z-index: 10000;
        }

        .photo-lightbox-close:hover {
            color: #a67c52;
        }

        .lightbox-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            background-color: #000;
        }

        .lightbox-video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .lightbox-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            padding: 10px;
            line-height: 1;
            transition: color 0.3s;
        }

        .lightbox-close:hover {
            color: #a67c52;
        }

        .lightbox-title {
            color: #fff;
            text-align: center;
            margin-top: 20px;
            font-size: 20px;
            letter-spacing: 1px;
        }

        .expand-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #a67c52 0%, #8b6339 100%);
            color: #fff;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .video-wrapper:hover .expand-icon {
            opacity: 1;
            transform: scale(1.1) rotate(90deg);
        }

        .video-item h3 {
            font-size: 18px;
            font-weight: 400;
            color: #3a3a3a;
            text-align: center;
            letter-spacing: 1px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 80px;
            background-color: #f5f1eb;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 42px;
            font-weight: 300;
            margin-bottom: 15px;
            color: #3a3a3a;
        }

        .faq-header p {
            font-size: 14px;
            color: #6a6a6a;
            letter-spacing: 1px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .faq-item {
            background-color: #fff;
            padding: 35px;
            transition: box-shadow 0.3s;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .faq-item h3 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 15px;
            color: #3a3a3a;
        }

        .faq-item p {
            line-height: 1.8;
            font-size: 14px;
            color: #6a6a6a;
        }

        /* Mobile viewport settings for exact desktop appearance */
        @media (max-width: 1024px) {
            body {
                min-width: 1400px;
                overflow-x: auto;
            }
        }
        /* Footer */
        footer {
            background-color: #3a3a3a;
            color: #d4d4d4;
            padding: 60px 80px 30px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            margin-bottom: 30px;
        }

        .footer-logo h2 {
            font-size: 24px;
            font-weight: 300;
            color: #a67c52;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .footer-logo p {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #8a8a8a;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #d4d4d4;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #a67c52;
        }

        .footer-social {
            margin-bottom: 30px;
        }

        .footer-social a {
            display: inline-block;
            margin: 0 15px;
            color: #d4d4d4;
            font-size: 24px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            color: #a67c52;
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid #5a5a5a;
            font-size: 11px;
            color: #8a8a8a;
        }

        .footer-bottom p {
            margin: 5px 0;
        }
        #moments {
            color: #fff;
            font-family: "Futura", "Poppins", "Montserrat", sans-serif;
            font-weight: 500;
            font-size: 100px;
            margin-bottom: 0%;
        }
        #forever {
            color: #a67c52;
            font-family: "EB Garamond", serif;
            font-size: 50px;
            margin-top: 0%;
            font-weight: 200;
        }
        #capturee {
            font-size: 15px !important;
            margin-bottom: 0%;
        }