/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Grey & Gold Theme */
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #8b7355;
    --accent: #c9a96e;
    --gold: #d4af37;
    --gold-light: #e6c547;
    --gold-dark: #b8941f;
    --grey: #6c757d;
    --grey-light: #adb5bd;
    --grey-dark: #495057;
    --charcoal: #343a40;
    --dark: #212529;
    --light-grey: #f8f9fa;
    --white: #ffffff;
    --cream: #faf9f7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    --gradient-secondary: linear-gradient(135deg, #8b7355 0%, #6c757d 100%);
    --gradient-accent: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #343a40 0%, #212529 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #e6c547 100%);

    /* Typography - Elegant Serif Throughout */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.title-number {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    font-family: var(--font-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo .logo {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-logo .logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.nav-link:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-social {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.nav-social:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #343a40 0%, #495057 50%, #6c757d 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0 2rem 4rem;
}

.hero-text {
    color: var(--white);
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-placeholder .logo-text {
    font-size: 2rem;
    font-weight: 700;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 500px;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--white);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== VIDEO SECTION ===== */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

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

.play-button i {
    font-size: 2rem;
    margin-left: 4px;
}

/* ===== PHOTO SLIDER SECTION ===== */
.photo-slider-section {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.photo-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.photo-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(52, 58, 64, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    opacity: 1;
    visibility: visible;
    min-height: 500px;
}

.slider-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: var(--light-grey);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.slide-image img:not([src]) {
    background: var(--light-grey);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image img:not([src])::before {
    content: "Loading...";
    color: var(--grey);
    font-size: 1.2rem;
}

.slider-slide:hover .slide-image img {
    transform: scale(1.05);
}


.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.slide-content h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
    color: var(--white);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--grey-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.dot:hover {
    background: var(--gold-light);
}

.designs-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.placeholder-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-story h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    opacity: 1 !important;
    visibility: visible !important;
}

.about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray);
    opacity: 1 !important;
    visibility: visible !important;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.highlight-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.highlight-content p {
    color: var(--gray);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 500px;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.profile-placeholder {
    width: 100%;
    height: 500px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.placeholder-content {
    text-align: center;
}

.placeholder-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    background: var(--cream);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gold);
    margin-top: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    min-height: 200px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--white);
    color: var(--charcoal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-submit {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Messages */
.messages {
    margin-bottom: 2rem;
}

.message-banner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2.25rem;
    margin-bottom: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 241, 235, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
}

.message-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.65), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.banner-emblem {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--white);
    font-weight: 500;
    box-shadow: 0 16px 30px rgba(212, 175, 55, 0.35);
    text-transform: uppercase;
}

.banner-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

.banner-text {
    color: var(--grey-dark);
}

.banner-accent span {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-dark);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.message-success .banner-emblem {
    background: linear-gradient(135deg, #d4af37, #9c7a24);
}

.message-success {
    border-color: rgba(212, 175, 55, 0.45);
}

.message-error {
    border-color: rgba(166, 70, 70, 0.4);
}

.message-error .banner-emblem {
    background: linear-gradient(135deg, #a64646, #d0745b);
}

/* Confirmation Dialog */
.confirmation-dialog {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 2000;
}

.confirmation-dialog.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.confirmation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(6px);
}

.confirmation-panel {
    position: relative;
    width: min(480px, 90vw);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 235, 0.96));
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.confirmation-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.5), rgba(255, 255, 255, 0));
    z-index: -1;
}

.confirmation-crest {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
}

.confirmation-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.confirmation-message {
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
}

.confirmation-highlights {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.confirmation-highlights li {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.confirmation-close {
    padding: 0.9rem 2.75rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
}

.confirmation-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .confirmation-panel {
        padding: 2rem;
    }

    .confirmation-highlights {
        gap: 0.5rem;
    }

    .confirmation-highlights li {
        font-size: 0.9rem;
    }

    .highlight{
        font-size: 80px;
    }
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    background: transparent;
}

.contact-link:hover {
    color: var(--primary);
    background: var(--gold);
    transform: translateY(-2px);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.whatsapp-link {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.whatsapp-link:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.footer-logo .logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        /* keep left aligned on small screens */
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .designs-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    /* Footer left aligned for <=768px as well */
    .footer-content,
    .footer-bottom,
    .footer-section,
    .footer-links,
    .social-links {
        text-align: left !important;
        justify-items: start;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    :root {
        --section-padding: 72px 0;
    }

    /* reduce vertical rhythm on small phones */

    .hero-content {
        margin-right: 50px;
        margin-left: -20px;
    }

    .hero-title {
        font-size: clamp(2rem, 9.5vw, 2.6rem);
        line-height: 1.08;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 36ch;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* Force hero media to fit on small screens */
    .hero-visual {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-title{
        font-size: 45px;
    }

    .highlight{
        font-size: 65px;
    }

    .hero-logo{
        margin-bottom: 0px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
        /* reduced heading size */
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
        /* left aligned section headings */
    }

    .contact-form-section {
        padding: 1.5rem 1rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    /* Footer left aligned on small phones */
    .footer-content,
    .footer-bottom,
    .footer-section,
    .footer-links,
    .social-links {
        text-align: left !important;
        justify-items: start;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Very small phones (375px) */
@media (max-width: 376px) {
    :root {
        --section-padding: 60px 0;
    }

    /* even tighter on very small phones */

    .hero {
        padding: 44px 0 36px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 10vw, 2.1rem);
        letter-spacing: -0.01em;
        margin-bottom: 0.5rem;
    }

    .hero-content {
        margin-right: 50px;
        margin-left: -20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        max-width: 32ch;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-visual {
        justify-content: flex-start;
        width: 100%;
    }

    .hero-image-container {
        width: 70vw;
        height: auto !important;
    }

    .hero-logo{
        margin-bottom: 0px;
    }

    .hero-title{
        font-size: 40px;
    }

    .video-container video {
        width: 72vw;
        height: 40vw !important;
        max-width: 380px;
        border-radius: 16px;
    }

    .video-overlay {
        left: 15%;
        right: 15%;
        top: 6%;
        bottom: 6%;
        border-radius: 16px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.925rem;
    }

    .section-title {
        font-size: 1.65rem;
        text-align: left;
    }

    /* Footer left aligned on very small phones */
    .footer-content,
    .footer-bottom,
    .footer-section,
    .footer-links,
    .social-links {
        text-align: left !important;
        justify-items: start;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Tune video overlay width on smaller phones */
@media (max-width: 480px) {

    .hero-image-container,
    .video-container {
        width: 72vw;
        max-width: 420px;
        height: 40vw;
    }

    .video-container video {
        border-radius: 18px;
    }

    .video-overlay {
        left: 6%;
        right: 6%;
        top: 4%;
        bottom: 4%;
        border-radius: 18px;
    }
}

@media (max-width: 375px) {

    .hero-image-container,
    .video-container {
        width: 94vw;
        max-width: 380px;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .video-container video {
        border-radius: 16px;
    }

    .video-overlay {
        left: 8%;
        right: 8%;
        top: 6%;
        bottom: 6%;
        border-radius: 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

<<<<<<< HEAD
/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}
=======



/* ===== RESPONSIVE BREAKPOINTS ===== */

/* <= 1024px */
@media (max-width: 1024px) {
  .hero { padding: 80px 0; }
  .hero .container { padding-inline: 24px; }
  .hero .hero-title { font-size: clamp(3.25rem, 7vw, 5rem); }
  .section-title { font-size: clamp(1.9rem, 4.8vw, 2.6rem); }
}

/* <= 768px (tablet) */
@media (max-width: 768px) {
  .navbar .nav-menu { gap: 16px; }
  .hero { padding: 72px 0; }
  .hero-content { flex-direction: column; gap: 28px; align-items: flex-start; }
  .hero .hero-title { font-size: clamp(2.6rem, 8vw, 3.6rem); line-height: 1.08; }
  .hero-description { font-size: 1rem; }
  .photo-slider-section .container { padding-inline: 20px; }
  .about-section .about-content { grid-template-columns: 1fr; gap: 28px; }
  .card-title { font-size: 1.125rem; }
  .card-text { font-size: 0.9875rem; }
}

/* <= 600px (large phones) */
@media (max-width: 600px) {
  .hero { padding: 64px 0; }
  .hero .container { padding-inline: 18px; }
  .hero .hero-title { font-size: clamp(2.3rem, 9vw, 3.1rem); }
  .hero-actions { gap: 12px; flex-wrap: wrap; }
  .btn { padding: 12px 18px; font-size: 0.9875rem; }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.1rem); }
  .section-subtitle { font-size: 1rem; }
  .contact-section .form-row { grid-template-columns: 1fr; gap: 14px; }
  .nav-logo img { max-height: 36px; }
}

/* <= 480px (small phones) */
@media (max-width: 480px) {
  .hero { padding: 56px 0; }
  .hero .container { padding-inline: 16px; }
  .hero .hero-title { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-description { font-size: 0.95rem; }
  .btn { padding: 11px 16px; font-size: 0.95rem; }
  .photo-slider .slider-controls { transform: scale(0.9); }
  .message-banner { grid-template-columns: 1fr; row-gap: 10px; text-align: left; }
  .footer .footer-container { padding-inline: 16px; }
}

/* <= 375px (very small phones) */
@media (max-width: 375px) {
  .hero { padding: 48px 0; }
  .hero .hero-title { font-size: clamp(1.85rem, 11vw, 2.3rem); }
  .hero-actions { gap: 10px; }
  .btn { padding: 10px 14px; font-size: 0.925rem; }
  .section-title { font-size: clamp(1.45rem, 6vw, 1.85rem); }
  .section-subtitle, p, .card-text { font-size: 0.9375rem; }
}