* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: #000;
    line-height: 1.6;
}

/* Header */
header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 20px;
    position: fixed; 
    top: 0; 
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo { 
    font-size: 1.4rem; 
    font-weight: 600; 
    color: #fff;
}

.logo h1 {
    font-size: 1.4rem;
    margin: 0;
}

.logo h1 a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav { 
    display: flex; 
    gap: 20px; 
}

nav a {
    color: #fff; 
    text-decoration: none; 
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover { 
    color: #000;
    background: #fff;
}

.hamburger { 
    display: none; 
    cursor: pointer; 
    font-size: 1.5rem;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
    background: none;
    border: none;
    color: #fff;
}

.hamburger:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero */
.hero {
    height: 100vh; 
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    height: 100%; 
    background: rgba(0,0,0,0.5);
    text-align: center; 
    padding: 20px;
}

.hero-overlay h1 { 
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-overlay p { 
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    background: #fff; 
    color: #000; 
    padding: 15px 30px;
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn:hover { 
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

/* Sections */
section { 
    padding: 60px 20px; 
    text-align: center; 
}

h2 { 
    margin-bottom: 40px; 
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
}

/* Services */
/* Services */
.services-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
}

.service-cards { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px; 
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: #111; 
    padding: 30px 25px; 
    border-radius: 15px; 
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.card:hover { 
    transform: translateY(-8px);
    background: #1a1a1a;
    border-color: #555;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #fff;
}

.card p {
    color: #ccc;
    line-height: 1.6;
}

/* Portfolio */
/* Portfolio */
.portfolio-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
}

/* Portfolio Categories */
.portfolio-category {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-category h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Property Photography Portfolio */
.portfolio-project {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.portfolio-project h4 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.project-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.gallery img {
    width: 100%;
    border-radius: 12px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Website Development Portfolio */
.website-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.website-project {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-align: left;
}

.website-project:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
    border-color: #555;
}

.website-project h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.website-project .project-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Social Media Management Portfolio */
.social-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.social-project {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
    text-align: left;
}

.social-project:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
    border-color: #555;
}

.social-project h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-project .project-description {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.achievement {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #ccc;
    background: rgba(0,0,0,0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.image-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-pic {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #ddd;
}

/* Contact */
/* Contact */
.contact-intro {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    text-align: center;
}

.contact-areas {
    margin-top: 30px;
    padding: 20px;
    background: #111;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

.contact-areas h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-areas p {
    color: #aaa;
    line-height: 1.5;
    margin: 0;
}

.contact-info-centered {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.contact-info-centered h3 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #111;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid #333;
}

.contact-method:hover {
    transform: translateY(-3px);
    background: #1a1a1a;
    border-color: #555;
}

.contact-icon {
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-details a:hover {
    color: #ccc;
}

.contact-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 8px;
    line-height: 1.5;
}

/* Booking Section */
.booking {
    padding: 60px 20px;
    text-align: center;
    background: #111;
}

.booking h2 {
    margin-bottom: 40px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    font-weight: 600;
}

#my-cal-inline-property-photography {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-width: 1000px;
    margin: 0 auto;
}

/* Animation Base */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #111; 
    color: #aaa; 
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    /* Header Mobile */
    header {
        padding: 12px 15px;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    nav { 
        display: none; 
        flex-direction: column; 
        background: rgba(0,0,0,0.98);
        backdrop-filter: blur(15px);
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0;
        width: 100%; 
        padding: 15px;
        border-top: 1px solid #333;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        z-index: 999;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    nav.active { 
        display: flex; 
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    nav a {
        padding: 16px 20px;
        margin: 4px 0;
        background: rgba(255,255,255,0.08);
        border-radius: 12px;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    nav a:hover,
    nav a.active {
        background: rgba(255,255,255,0.15);
        transform: translateX(5px);
        border-color: rgba(255,255,255,0.2);
    }
    
    .hamburger { 
        display: block;
        padding: 8px;
        font-size: 1.3rem;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        background: rgba(255,255,255,0.15);
        transform: scale(1.1);
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
    }
    
    .hero-overlay {
        padding: 80px 15px 40px;
        min-height: 100vh;
    }
    
    .hero-overlay h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-overlay p {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        margin-bottom: 30px;
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        min-width: 200px;
        display: inline-block;
    }
    
    /* Sections Mobile */
    section {
        padding: 60px 15px;
    }
    
    h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 35px;
        line-height: 1.3;
    }
    
    .services-intro,
    .portfolio-intro,
    .contact-intro {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 95%;
    }
    
    /* Services Mobile */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card p {
        font-size: 0.95rem;
    }
    
    /* Portfolio Mobile */
    .portfolio-category {
        margin-bottom: 50px;
    }
    
    .portfolio-category h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .portfolio-project {
        margin-bottom: 30px;
    }
    
    .portfolio-project h4 {
        font-size: 1.3rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .gallery img {
        aspect-ratio: 16/10;
        border-radius: 10px;
    }
    
    .gallery img:hover {
        transform: none;
    }
    
    /* Website Projects Mobile */
    .website-projects {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .website-project {
        padding: 25px 20px;
    }
    
    .website-project h4 {
        font-size: 1.3rem;
    }
    
    .project-link {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    /* Social Projects Mobile */
    .social-projects {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .social-project {
        padding: 25px 20px;
    }
    
    .social-project h4 {
        font-size: 1.3rem;
    }
    
    .social-achievements {
        gap: 8px;
    }
    
    .achievement {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    /* Lightbox Mobile */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav button {
        font-size: 20px;
        padding: 12px 16px;
    }
    
    #lightbox-img {
        max-width: 95%;
        max-height: 75%;
    }
    
    .image-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* About Mobile */
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .profile-pic {
        width: 180px;
        height: 180px;
    }
    
    .about-text p {
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Contact Mobile */
    .contact-info-centered {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .contact-info-centered h3 {
        font-size: clamp(1.3rem, 4vw, 1.4rem);
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        background: #0f0f0f;
        border: 1px solid #2a2a2a;
    }
    
    .contact-method:hover {
        transform: translateY(-2px);
        background: #1a1a1a;
    }
    
    .contact-icon {
        font-size: 2.5rem;
        align-self: center;
        margin-bottom: 5px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .contact-details a {
        font-size: 1.1rem;
        font-weight: 500;
        word-break: break-word;
    }
    
    .contact-desc {
        font-size: 0.9rem;
        margin-top: 10px;
        color: #999;
    }
    
    .contact-areas {
        margin-top: 35px;
        padding: 25px 20px;
        text-align: center;
        border-radius: 12px;
    }
    
    .contact-areas h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-areas p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Booking Mobile */
    .booking {
        padding: 60px 15px;
    }
    
    .booking h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 40px;
    }
    
    #my-cal-inline-property-photography {
        height: 600px;
        border-radius: 12px;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Footer Mobile */
    footer {
        padding: 40px 15px 25px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        padding: 20px 0;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .footer-section ul li {
        margin-bottom: 0;
    }
    
    .footer-section a {
        font-size: 1rem;
        padding: 5px 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .footer-section a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .footer-bottom {
        padding: 25px 15px;
        background: #000;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .social-links {
        margin-top: 15px;
        display: flex;
        justify-content: center;
    }
    
    .instagram-link {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        border-radius: 8px;
    }
}

/* Extra Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    header {
        padding: 10px 12px;
        min-height: 55px;
    }
    
    .logo, .logo h1 {
        font-size: 1.1rem;
    }
    
    .hamburger {
        font-size: 1.2rem;
        padding: 6px;
    }
    
    .hero-overlay {
        padding: 70px 10px 30px;
    }
    
    .hero-overlay h2 {
        font-size: clamp(1.5rem, 7vw, 1.8rem);
        margin-bottom: 15px;
    }
    
    .hero-overlay p {
        font-size: clamp(0.9rem, 4vw, 1rem);
        margin-bottom: 25px;
        max-width: 95%;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    section {
        padding: 50px 10px;
    }
    
    h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 25px;
    }
    
    .service-cards {
        gap: 15px;
        padding: 0 5px;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .about-container {
        gap: 25px;
        padding: 0 10px;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .contact-info-centered {
        padding: 0 5px;
    }
    
    .contact-method {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        font-size: 2.2rem;
    }
    
    .booking {
        padding: 50px 10px;
    }
    
    #my-cal-inline-property-photography {
        height: 550px;
    }
    
    footer {
        padding: 30px 10px 20px;
    }
    
    .footer-section {
        padding: 15px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Instagram handle styles */
.instagram-handle {
    margin: 10px 0;
    font-size: 0.9rem;
}

.instagram-handle a {
    color: #e4405f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-handle a:hover {
    color: #c13584;
}

/* Gallery preview styles */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
}

.gallery-preview img {
    width: 100%;
    border-radius: 12px;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-preview img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Social links in footer */
.social-links {
    margin-top: 10px;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e4405f !important;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(228, 64, 95, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.2);
    color: #c13584 !important;
}

/* Active navigation link */
nav a.active {
    background: #fff;
    color: #000;
}

/* Property Photography Gallery Page Styles */
.property-gallery-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    padding: 120px 20px 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #ddd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

.full-gallery {
    padding: 60px 20px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #ddd;
    line-height: 1.6;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #111;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 20px 15px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.lightbox-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 90%;
    text-align: center;
}

/* Property Info Section */
.property-info {
    background: #111;
    padding: 80px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #555;
    background: #222;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

.cta-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* Additional Mobile Optimizations */

/* Improve touch targets */
a, button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Better mobile scrolling */
html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Prevent zoom on input focus */
input, select, textarea {
    font-size: 16px;
}

/* Better mobile video handling */
.background-video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Optimize animations for mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile-specific gallery improvements */
@media (max-width: 768px) {
    .gallery img,
    .gallery-preview img,
    .gallery-grid img {
        will-change: transform;
        backface-visibility: hidden;
        perspective: 1000px;
    }
    
    /* Better mobile gallery hover states */
    .gallery-item:active,
    .gallery img:active,
    .gallery-preview img:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Improve Cal.com embed on mobile */
    #my-cal-inline-property-photography iframe {
        border-radius: 12px !important;
        border: none !important;
    }
}

/* Loading states for better mobile UX */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Better mobile lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        padding: 10px;
    }
    
    #lightbox-img {
        max-width: 100%;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
    }
    
    .lightbox-nav button {
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.3);
        width: 50px;
        height: 50px;
        font-size: 18px;
        font-weight: bold;
    }
    
    .lightbox-nav button:active {
        transform: scale(0.95);
        background: rgba(0, 0, 0, 0.9);
    }
    
    .lightbox-close {
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .lightbox-close:active {
        transform: scale(0.95);
        background: rgba(0, 0, 0, 0.9);
    }
}
@media (max-width: 768px) {
    .property-gallery-hero {
        padding: 100px 15px 50px;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .image-caption {
        font-size: 0.85rem;
        padding: 15px 12px 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
        margin-top: 50px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
}

@media (max-width: 480px) {
    .gallery-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .lightbox-caption {
        bottom: 70px;
        font-size: 12px;
        padding: 6px 12px;
        max-width: 95%;
    }
}