/* Global Styles */
:root {
    --primary-color: #FF9500;
    --secondary-color: #2C2C2C;
    --accent-color: #FFEB3B;
    --light-bg: #F8F9FA;
    --text-dark: #333;
    --text-light: #666;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo img {
    height: 60px;
    width: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

/* Slideshow Container - Behind Everything */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay - Over Images, Under Text */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
}

/* Content - On Top */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.8s ease 0.5s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--white);
    color: var(--text-dark);
}


/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
}

/* Services Section */
.services-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.services-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    cursor: pointer;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 149, 0, 0.25);
    border-top: 3px solid var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.3) rotate(15deg);
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-dark);
}

/* Scroll Controls */
.scroll-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    padding: 0 10px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.3);
    pointer-events: auto;
    z-index: 11;
}

.scroll-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.scroll-btn.scroll-left {
    left: -40px;
}

.scroll-btn.scroll-right {
    right: -40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(50% - 15px);
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 calc(100% - 15px);
        max-width: 100%;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 149, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}



/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: left 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 149, 0, 0.2);
    border-top: 3px solid var(--primary-color);
}

.team-member:hover::before {
    left: 100%;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 149, 0, 0.3);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.team-member:hover h3 {
    color: var(--primary-color);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-member:hover .role {
    letter-spacing: 1px;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.team-member:hover p {
    color: var(--text-dark);
}

/* Careers Section */
.careers-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.job-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.job-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.job-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.apply-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #E67E00);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 650px;
    }
    
    .nav-item {
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-scroll-wrapper {
        gap: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    @media (max-width: 480px) {
        .team-grid {
            grid-template-columns: 1fr;
        }

        .portfolio-grid {
            grid-template-columns: 1fr;
        }
        
        .hero-title {
            font-size: 1.8rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .nav-logo img {
            height: 50px;
        }
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
}

.services-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.scroll-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    z-index: 10;
}

.scroll-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.services-grid {
    flex: 1;
    width: 100%;
    min-height: 500px;
}

/* Gallery Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 34px;
    left: 0;
    min-width: 190px;
    background: var(--white);
    list-style: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 24px;
}

/* Separate Gallery Pages */
.gallery-page-hero {
    margin-top: 80px;
    min-height: 26vh;
    background:
        linear-gradient(135deg, rgba(255, 248, 235, 0.94), rgba(255, 228, 179, 0.9)),
        url('images/gallery1.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
    padding: 38px 20px;
    overflow: hidden;
    position: relative;
    animation: galleryHeroReveal 0.9s ease both;
}

.gallery-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 149, 0, 0.22), transparent 38%);
    animation: galleryGlowIn 1.1s ease both;
}

.gallery-page-hero > div {
    position: relative;
    z-index: 1;
    animation: galleryTextReveal 0.9s ease 0.15s both;
}

.gallery-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.75);
}

.gallery-page-hero p {
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
    color: #4a3420;
    font-weight: 500;
}

@keyframes galleryHeroReveal {
    from {
        opacity: 0;
        transform: scale(1.03);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes galleryTextReveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryGlowIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Owners Page */
.owners-hero {
    margin-top: 80px;
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 70px 20px;
    background:
        linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 224, 166, 0.93)),
        url('images/gallery2.jpeg') center/cover;
}

.owners-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    top: -90px;
    right: 8%;
    background: rgba(255, 235, 59, 0.22);
    border-radius: 50%;
    animation: ownersFloat 5s ease-in-out infinite;
}

.owners-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 48%, rgba(255, 149, 0, 0.12));
}

.owners-hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    color: var(--secondary-color);
    animation: ownersHeroText 0.95s ease both;
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(255, 149, 0, 0.28);
    border-radius: 8px;
    padding: 28px 34px;
    box-shadow: 0 18px 45px rgba(44, 44, 44, 0.14);
}

.owners-eyebrow {
    display: inline-block;
    color: var(--secondary-color);
    background: var(--accent-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.owners-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--secondary-color);
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.8);
}

.owners-hero p {
    font-size: 1.1rem;
    color: #4a3420;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
}

.owners-page {
    background: linear-gradient(180deg, #fffaf0 0%, var(--white) 45%, #fff7e6 100%);
    padding: 70px 20px;
}

.owner-profile {
    max-width: 1180px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: minmax(280px, 430px) 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.owner-profile:last-child {
    margin-bottom: 0;
}

.owner-profile-reverse {
    grid-template-columns: 1fr minmax(280px, 430px);
}

.owner-profile-reverse .owner-image-wrap {
    order: 2;
}

.owner-profile-reverse .owner-content {
    order: 1;
}

.owner-image-wrap {
    position: relative;
    border-radius: 8px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 22px 52px rgba(44, 44, 44, 0.16);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.owner-image-wrap::before {
    content: '';
    position: absolute;
    inset: -45%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.55), transparent 65%);
    transform: translateX(-45%) rotate(12deg);
    transition: transform 0.7s ease;
}

.owner-image-wrap:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(255, 149, 0, 0.28);
}

.owner-image-wrap:hover::before {
    transform: translateX(45%) rotate(12deg);
}

.owner-image-wrap img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    filter: saturate(1.04) contrast(1.02);
}

.owner-content {
    background: rgba(255, 255, 255, 0.9);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 42px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.owner-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.16), rgba(255, 235, 59, 0.22));
    border-bottom-left-radius: 100%;
}

.owner-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.owner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.owner-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.02rem;
}

.owner-content strong {
    color: var(--primary-color);
}

@keyframes ownersHeroText {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ownersFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(18px) scale(1.06);
    }
}

.photo-scroll-section {
    background: var(--light-bg);
}

.photo-scroll-wrapper {
    position: relative;
    overflow: hidden;
}

.photo-strip {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 4px 35px;
    scrollbar-width: none;
}

.photo-strip::-webkit-scrollbar {
    display: none;
}

.photo-card {
    flex: 0 0 360px;
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    scroll-snap-align: center;
    position: relative;
    background: var(--white);
    animation: fadeInUp 0.8s ease backwards;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.photo-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.82);
}

.photo-card span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 149, 0, 0.92);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 5px;
    font-weight: 600;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.gallery-scroll-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.12);
}

.gallery-scroll-btn.left {
    left: 8px;
}

.gallery-scroll-btn.right {
    right: 8px;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: #f7f7f7;
    }

    .dropdown-menu a {
        text-align: center;
    }

    .gallery-page-hero h1 {
        font-size: 2rem;
    }

    .owners-hero {
        min-height: 34vh;
        padding: 54px 20px;
    }

    .owners-hero h1 {
        font-size: 2.3rem;
    }

    .owners-hero p {
        font-size: 1rem;
    }

    .owners-page {
        padding: 46px 18px;
    }

    .owner-profile,
    .owner-profile-reverse {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 52px;
    }

    .owner-profile-reverse .owner-image-wrap,
    .owner-profile-reverse .owner-content {
        order: initial;
    }

    .owner-image-wrap img {
        height: 390px;
    }

    .owner-content {
        padding: 28px 24px;
    }

    .owner-content h2 {
        font-size: 1.85rem;
    }

    .photo-card {
        flex-basis: 82vw;
        height: 380px;
    }
}
