/* photography.css */
:root {
    --burgundy: #800020;
    --dark-burgundy: #5a0017;
    --light-burgundy: #a8325a;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #888888;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gold: #d4af37;
    --vh: 1vh;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

img {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 10, 0.98);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    z-index: 1001;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--burgundy);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo span {
    color: var(--burgundy);
}

.demo-pill {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-left: 14px;
    transform: translateY(1px);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.menu-top {
    display: none;
}

.nav-menu a {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--burgundy);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--burgundy);
}

.nav-booking {
    background-color: var(--burgundy);
    color: var(--white) !important;
    padding: 12px 30px !important;
    border-radius: 2px;
    margin-left: 10px;
    transition: all 0.3s;
    border: 2px solid var(--burgundy);
}

.nav-booking:hover {
    background-color: transparent;
    color: var(--burgundy) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.3);
}

.nav-booking::after {
    display: none !important;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-icon:hover {
    color: var(--burgundy);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    background-color: transparent;
    border: none;
    padding: 5px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 998;
}

.menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(10, 10, 10, 0.85), rgba(128, 0, 32, 0.2)), url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 80px);
}

.hero-text {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-radius: 2px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.hero-title span {
    color: var(--burgundy);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--burgundy);
    bottom: 10px;
    left: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 18px 35px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    gap: 10px;
    border: none;
    outline: none;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
}

.btn-primary span,
.btn-secondary span,
.btn-outline span {
    position: relative;
    z-index: 2;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

.btn-primary:hover {
    background-color: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
    padding: 15px 30px;
}

.btn-outline:hover {
    background-color: var(--burgundy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.2);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    max-width: 700px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    animation: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    margin-top: 10px;
}

/* Section Styling */
section {
    padding: 96px 40px;
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--burgundy);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--burgundy);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--off-white);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.55s var(--ease-out), box-shadow 0.55s var(--ease-out);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-out);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    padding: 40px;
    z-index: 2;
}

.portfolio-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--burgundy);
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.portfolio-link:hover {
    background-color: var(--burgundy);
    color: var(--white);
    transform: translateX(5px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

/* Services Section */
.services {
    position: relative;
    background-color: var(--white);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.service-card {
    background-color: var(--off-white);
    padding: 50px 40px;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.featured {
    transform: translateY(-20px);
    border-top: 5px solid var(--burgundy);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--burgundy);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 2px;
    font-weight: 500;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--burgundy);
    margin-bottom: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.service-card p {
    color: var(--light-gray);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-features {
    text-align: left;
    margin-bottom: 30px;
}

.service-features p {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.service-features i {
    color: var(--burgundy);
    font-size: 14px;
}

.service-footer {
    margin-top: auto;
}

.service-link {
    color: var(--burgundy);
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
}

.service-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--burgundy);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.service-link:hover::after {
    width: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured:hover {
    transform: translateY(-30px);
}

/* About Section */
.about {
    background-color: var(--off-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-content {
    flex: 1;
    width: 100%;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content .section-title::after {
    left: 0;
    transform: none;
}

.about-content p {
    margin-bottom: 25px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-quote {
    border-left: 4px solid var(--burgundy);
    padding-left: 30px;
    margin: 40px 0;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 4rem;
    color: var(--burgundy);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.about-quote p {
    font-style: italic;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.about-quote cite {
    color: var(--light-gray);
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
}

.about-cta {
    margin-top: 40px;
}

.about-image {
    flex: 1;
    position: relative;
    width: 100%;
}

.about-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.frame-top,
.frame-bottom {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: var(--burgundy);
    z-index: 1;
}

.frame-top {
    top: 20px;
}

.frame-bottom {
    bottom: 20px;
}

.about-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.about-awards {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.award {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 2px;
    min-width: 150px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.award:hover {
    transform: translateY(-5px);
}

.award h4 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.award p {
    color: var(--light-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background-color: var(--dark-gray);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.testimonials .section-title,
.testimonials .section-subtitle,
.testimonials .section-description {
    color: var(--white);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 2px;
    transition: all 0.3s;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(128, 0, 32, 0.3);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--burgundy);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: var(--burgundy);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    flex: 1;
    width: 100%;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.contact-info p {
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 50px;
}
.contact-details a,
.contact-details a:visited {
    color: inherit;
    text-decoration: none;
}
.contact-details a:hover {
    text-decoration: underline;
}
/* Prevent iOS/Safari auto-detected email/phone links from turning bright blue */
.contact-details a[x-apple-data-detectors],
.contact-details a[x-apple-data-detectors]:hover,
.contact-details a[x-apple-data-detectors]:active,
.contact-details a[x-apple-data-detectors]:visited {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.contact-item:hover .contact-icon {
    transform: rotate(15deg);
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 600;
}

.contact-text p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 1rem;
}

.contact-sub {
    color: var(--light-gray) !important;
    font-size: 0.9rem !important;
    margin-top: 2px !important;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 18px;
}

.social-icons a:hover {
    background-color: var(--burgundy);
    transform: translateY(-3px) rotate(5deg);
}

.contact-form {
    flex: 1;
    background-color: var(--off-white);
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--black);
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    color: var(--gray);
    font-size: 16px;
    border-radius: 2px;
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23800020' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 40px 30px;
    width: 100%;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--burgundy), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
    font-size: 1rem;
}


.footer-links h3,
.footer-hours h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.footer-links ul li a:hover {
    color: var(--burgundy);
    transform: translateX(5px);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background-color: var(--burgundy);
    color: var(--white);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
}

.newsletter-form button:hover {
    background-color: var(--dark-burgundy);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        transform: translateY(0);
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 0 20px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-stats {
        justify-content: flex-start;
        gap: 40px;
    }
    
    .about-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .hamburger {
        display: inline-flex;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
        margin-left: auto;
        gap: 7px;
    }

    .hamburger:hover {
        transform: translateY(-1px);
        border-color: rgba(212, 175, 55, 0.22);
        background: rgba(255, 255, 255, 0.09);
    }

    .demo-pill {
        display: none;
    }

    .nav-icons {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        inset: 0;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        height: 100vh;
        text-align: center;
        transform: translate3d(0, -8px, 0);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s var(--ease-out);
        padding: 84px 0 44px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: none;
    }
    
    .nav-menu.active {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        pointer-events: auto;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu li:not(.menu-top) {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
        transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    }

    .nav-menu.active li:not(.menu-top) {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .nav-menu.active li:nth-child(2) { transition-delay: 0.04s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.07s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.10s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.13s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.16s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.19s; }
    
    .nav-menu a {
        display: block;
        padding: 18px 20px;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-top {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 18px 20px 16px;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 68px;
        background: rgba(10, 10, 10, 0.96);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        z-index: 1000;
        text-align: left;
    }

    .menu-label {
        font-family: 'Montserrat', sans-serif;
        font-size: 12px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.72);
        display: none;
    }

    .menu-close {
        width: 44px;
        height: 44px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    }

    .menu-close:hover {
        transform: rotate(8deg);
        border-color: rgba(212, 175, 55, 0.25);
        background: rgba(128, 0, 32, 0.12);
    }
    
    .nav-booking {
        margin: 30px auto;
        width: 80%;
        display: block;
        max-width: 300px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .portfolio-info {
        padding: 30px;
    }
    
    .portfolio-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    section {
        padding: 80px 20px;
        width: 100%;
        overflow: hidden;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-top: 50px;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item {
        height: 400px;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-frame img {
        height: 400px;
    }
    
    .footer {
        padding: 60px 20px 20px;
    }
    
    input, select, textarea, button {
        font-size: 16px !important;
    }
    
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    img, video {
        max-width: 100%;
        height: auto;
    }
    
    .hero {
        min-height: 90vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .footer-container {
        gap: 30px;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    .portfolio-info h3 {
        font-size: 1.3rem;
    }
    
    .portfolio-link {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .hero-content {
        min-height: calc(-webkit-fill-available - 80px);
    }
}

/* Print Styles */
@media print {
    .navbar, .hero-scroll, .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        background: none;
        color: black;
    }
    
    .hero-title, .section-title {
        color: black;
    }
}
