        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.6;
            color: #3d3024;
            background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe1 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border-bottom: 1px solid rgba(218, 165, 32, 0.08);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 600;
            color: #8b4513;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: transform 0.3s ease;
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(218, 165, 32, 0.1);
        }

        .logo:hover {
            transform: scale(1.02);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.5rem;
            border-radius: 25px;
            border: 1px solid rgba(218, 165, 32, 0.1);
        }

        .nav-links a {
            text-decoration: none;
            color: #5d4e37;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            position: relative;
        }

        .nav-links a:hover {
            color: #8b4513;
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8f5f0 0%, #f2ede3 50%, #ede5d8 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 40%;
            height: 100%;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(248, 245, 240, 0.3) 100%);
            pointer-events: none;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2c2016;
            letter-spacing: -1px;
            line-height: 1.1;
            opacity: 0;
            animation: slideInUp 1s ease 0.3s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: #4a3d2a;
            font-weight: 400;
            opacity: 0;
            animation: slideInUp 1s ease 0.6s forwards;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
            opacity: 0;
            animation: slideInUp 1s ease 0.9s forwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
            background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
        }

        /* Section Styling */
        section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 4rem;
            color: #3d3024;
            letter-spacing: -0.5px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #daa520, #b8860b);
            border-radius: 2px;
        }

        /* Portfolio Section */
        .portfolio {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            scroll-margin-top: 120px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .portfolio-item {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0);
        }

        .portfolio-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .portfolio-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #f5deb3 0%, #daa520 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8b4513;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #3d3024;
        }

        .portfolio-content p {
            color: #5d4e37;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .show-more-btn {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
            width: 100%;
        }

        .show-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
            background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 2% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 1400px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        /* Large Desktop - Extra wide modal */
        @media (min-width: 1400px) {
            .modal-content {
                max-width: 1600px;
                width: 85%;
            }
        }

        /* Desktop - Wide modal */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .modal-content {
                max-width: 1400px;
                width: 90%;
            }
        }

        /* Laptop - Medium modal */
        @media (min-width: 992px) and (max-width: 1199px) {
            .modal-content {
                max-width: 1100px;
                width: 92%;
            }
        }

        /* Tablet - Smaller modal */
        @media (min-width: 768px) and (max-width: 991px) {
            .modal-content {
                max-width: 800px;
                width: 95%;
            }

            .image-grid.luxury-grid,
            .image-grid.default-grid,
            .image-grid.daly-city-grid {
                grid-template-columns: repeat(3, 1fr) !important;
            }
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #8b4513;
        }

        .modal h3 {
            margin-bottom: 1.5rem;
            color: #3d3024;
            font-size: 1.8rem;
        }

        .image-grid {
            display: grid;
            gap: 1.2rem;
            margin-top: 1rem;
            width: 100%;
        }

        .image-grid.daly-city-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .image-grid.luxury-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .image-grid.default-grid {
            grid-template-columns: repeat(5, 1fr);
        }

        .image-slot {
            aspect-ratio: 1 !important;
            background: #f0f0f0;
            border: 2px dashed #ddd;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.7rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            min-height: 80px !important;
            max-height: 80px !important;
            width: 100% !important;
            height: 80px !important;
            box-sizing: border-box !important;
        }

        .image-slot:hover {
            border-color: #daa520;
            background: #f8f6f0;
            transform: scale(1.05);
        }

        .image-slot img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            object-position: center !important;
            border-radius: 8px;
            max-width: none !important;
            max-height: none !important;
            min-width: 100% !important;
            min-height: 100% !important;
            display: block !important;
            flex-shrink: 0 !important;
        }

        .image-slot.filled {
            border: 2px solid #daa520;
            background: white;
        }

        .image-slot.filled:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .image-slot.hidden {
            visibility: hidden;
        }

        /* Contact Section */
        .contact {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #3d3024;
        }

        .contact-info p {
            margin-bottom: 2rem;
            color: #5d4e37;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            padding: 1.2rem 0;
            font-size: 1rem;
            color: #5d4e37;
            border-bottom: 1px solid rgba(218, 165, 32, 0.1);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-details li:hover {
            color: #8b4513;
        }

        .contact-details li:last-child {
            border-bottom: none;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            fill: #8b4513;
            flex-shrink: 0;
        }

        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 28px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #daa520, #b8860b);
            border-radius: 28px 28px 0 0;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: #3d3024;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1.2rem;
            border: 2px solid rgba(218, 165, 32, 0.1);
            border-radius: 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: rgba(248, 246, 240, 0.5);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #daa520;
            background: white;
            box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
            background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #3d3024 0%, #2c1810 100%);
            color: #daa520;
            text-align: center;
            padding: 2.5rem 0;
            border-radius: 40px 40px 0 0;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Responsive Design - Mobile/Tablet */
        @media (max-width: 767px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .modal-content {
                width: 98%;
                margin: 3% auto;
                padding: 1rem;
                max-width: none;
            }

            .image-grid.luxury-grid,
            .image-grid.default-grid,
            .image-grid.daly-city-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.8rem;
            }

            .image-slot {
                min-height: 60px;
                font-size: 0.65rem;
            }
        }

        /* Extra Small Mobile - Very narrow phones */
        @media (max-width: 480px) {
            .modal-content {
                width: 100%;
                margin: 0;
                padding: 0.8rem;
                border-radius: 0;
                max-height: 100vh;
            }

            .image-grid.luxury-grid,
            .image-grid.default-grid,
            .image-grid.daly-city-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 0.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInOnScroll 0.8s ease forwards;
        }

        @keyframes fadeInOnScroll {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== SLIDESHOW STYLES ===== */
        .slideshow-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .slideshow {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 10;
            background: linear-gradient(135deg, #2c2016 0%, #1a1208 100%);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(1.02);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slide-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5deb3 0%, #d2b48c 50%, #c4a574 100%);
            color: #5d4e37;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .slide-placeholder::before {
            content: '📷';
            font-size: 4rem;
            margin-bottom: 1rem;
            filter: grayscale(0.3);
        }

        .slide-placeholder span {
            font-size: 0.9rem;
            opacity: 0.7;
            font-weight: 400;
            margin-top: 0.5rem;
        }

        /* Navigation Arrows */
        .slideshow-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            font-size: 1.8rem;
            color: #3d3024;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
        }

        .slideshow-arrow:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .slideshow-arrow:active {
            transform: translateY(-50%) scale(0.95);
        }

        .slideshow-arrow.prev {
            left: 20px;
        }

        .slideshow-arrow.next {
            right: 20px;
        }

        /* Expand Button */
        .slideshow-expand {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            font-size: 1.4rem;
            color: #3d3024;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .slideshow-expand:hover {
            background: white;
            transform: scale(1.1);
        }

        /* Dot Indicators */
        .slideshow-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px 16px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        .slideshow-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .slideshow-dot:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        .slideshow-dot.active {
            background: white;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Slide Counter */
        .slideshow-counter {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        /* Fullscreen Mode */
        .slideshow.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            max-width: none;
            border-radius: 0;
            z-index: 2000;
            aspect-ratio: auto;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slideshow.fullscreen .slideshow-container {
            max-height: 90vh;
            max-width: 95vw;
        }

        .slideshow.fullscreen .slide img {
            max-height: 85vh;
            object-fit: contain;
        }

        .slideshow.fullscreen .slideshow-arrow {
            width: 70px;
            height: 70px;
            font-size: 2.2rem;
        }

        .slideshow.fullscreen .slideshow-arrow.prev {
            left: 30px;
        }

        .slideshow.fullscreen .slideshow-arrow.next {
            right: 30px;
        }

        .slideshow.fullscreen .slideshow-expand {
            top: 30px;
            right: 30px;
        }

        .slideshow.fullscreen .slideshow-dots {
            bottom: 30px;
        }

        .slideshow.fullscreen .slideshow-counter {
            top: 30px;
            left: 30px;
        }

        /* Responsive Slideshow */
        @media (max-width: 768px) {
            .slideshow {
                border-radius: 16px;
                aspect-ratio: 4 / 3;
            }

            .slideshow-arrow {
                width: 44px;
                height: 44px;
                font-size: 1.4rem;
            }

            .slideshow-arrow.prev {
                left: 10px;
            }

            .slideshow-arrow.next {
                right: 10px;
            }

            .slideshow-expand {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
                top: 10px;
                right: 10px;
            }

            .slideshow-dots {
                bottom: 12px;
                padding: 8px 12px;
                gap: 8px;
            }

            .slideshow-dot {
                width: 8px;
                height: 8px;
            }

            .slideshow-counter {
                top: 10px;
                left: 10px;
                font-size: 0.8rem;
                padding: 6px 12px;
            }

            .slide-placeholder {
                font-size: 1.1rem;
            }

            .slide-placeholder::before {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .slideshow {
                border-radius: 12px;
            }

            .slideshow-arrow {
                width: 38px;
                height: 38px;
                font-size: 1.2rem;
            }

            .slideshow-dots {
                gap: 6px;
            }

            .slideshow-dot {
                width: 6px;
                height: 6px;
            }
        }