/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

/* Color Variables & Style Reset */
:root {
    --primary-color: #C5476C;
    --primary-hover: #be6779;
    --primary-light: #fef5f6;
    --primary-border: #f8dee2;
    --text-color: #2c2527;
    --text-muted: #73676a;
    --bg-light: #ffffff;
    --bg-alt: #faf5f6;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', sans-serif;
    --container-max-width: 1250px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.header-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--primary-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(214, 125, 144, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid var(--primary-border);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-top-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
}

.menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.menu-toggle-btn:hover {
    color: var(--primary-color);
}

/* Megamenu Drawer */
.megamenu-drawer {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--primary-border);
    box-shadow: 0 10px 30px rgba(44, 37, 39, 0.08);
    z-index: 999;
    padding: 40px 0;
}

.megamenu-drawer.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.megamenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 45px;
}

.megamenu-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 700;
}

.megamenu-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.megamenu-col ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.megamenu-col ul li a:hover {
    color: var(--primary-color);
}

.megamenu-col ul li a svg {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.megamenu-card {
    background-color: var(--primary-light);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--primary-border);
}

.megamenu-card h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.megamenu-card-img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 20px;
    border: 1px solid var(--primary-border);
}

.megamenu-card h5 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.megamenu-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
}

.view-more-link:hover {
    color: var(--primary-color);
}

.view-more-link svg {
    width: 10px;
    height: 10px;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(214, 125, 144, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1.5px solid var(--primary-border);
}

.btn-outline:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 37, 39, 0.6) 0%, rgba(214, 125, 144, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(38px, 6vw, 65px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* Special Promotion Block */
.promo-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.promo-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(44, 37, 39, 0.08);
    border-radius: 100px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--primary-light);
}

.promo-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-image {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.promo-text h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.promo-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.promo-card .btn {
    margin-right: 10px;
}

/* Static Cards Grid */
.cards-grid-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-link {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(214, 125, 144, 0.03);
    border: 1px solid #fcf6f7;
    position: relative;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: var(--transition-smooth);
    z-index: 3;
}

.card-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.card-link:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-link:hover .card-arrow {
    background-color: var(--primary-color);
    color: #ffffff;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-body p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 38px);
    color: var(--text-color);
    font-weight: 800;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 15px auto 0;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background-color: var(--primary-light);
    border-top: 1px solid var(--primary-border);
    border-bottom: 1px solid var(--primary-border);
}

.awards-banner {
    text-align: center;
    margin-bottom: 40px;
}

.awards-banner h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    max-width: 800px;
    margin: 15px auto;
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.award-item {
    background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(214, 125, 144, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--primary-border);
    min-width: 180px;
    text-align: center;
}

.award-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.award-year {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Photographers Section */
.photographers-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.photographer-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--bg-alt);
    transition: var(--transition-smooth);
    position: relative;
}

.photographer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 125, 144, 0.08);
}

.photo-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
}

.photo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.availability-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.photographer-info {
    padding: 20px;
}

.photographer-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.photographer-location {
    font-size: 14px;
    color: var(--text-muted);
}

/* Why Us Section */
.why-us-section {
    padding: 90px 0;
    background-color: var(--bg-alt);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 24px;
    border: 1px solid var(--primary-border);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(214, 125, 144, 0.05);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Style Test Section */
.style-test-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.style-test-card {
    background-color: var(--primary-light);
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border: 1px solid var(--primary-border);
}

.style-test-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.style-test-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.style-test-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.style-test-list {
    list-style: none;
    margin-bottom: 35px;
}

.style-test-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.style-test-list li svg {
    color: var(--primary-color);
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.style-test-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Section */
.reviews-section {
    padding: 90px 0;
    background-color: var(--bg-alt);
    position: relative;
}

.reviews-carousel {
    max-width: 800px;
    margin: 40px auto 0;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(44, 37, 39, 0.04);
    border: 1px solid var(--primary-border);
    text-align: center;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    color: #ffd700;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
}

.review-author {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Story Section */
.story-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.story-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-meta {
    background-color: var(--bg-alt);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--primary-border);
}

.story-meta h2 {
    font-size: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-meta h3 {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 25px;
}

.story-meta p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: #2c2527;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-light);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    color: #a8a0a2;
    margin-bottom: 15px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a8a0a2;
    font-size: 14px;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #a8a0a2;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .style-test-card {
        grid-template-columns: 1fr;
    }

    .style-test-img {
        height: 350px;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-top-link,
    .nav-right .btn {
        display: none;
    }

    .megamenu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .megamenu-drawer {
        padding: 30px 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .promo-card {
        flex-direction: column;
        border-radius: 30px;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }

    .promo-info {
        flex-direction: column;
    }

    .promo-card .btn {
        width: 100%;
        margin-right: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Pricing & Availability Page Styles */
.pricing-header-section {
    padding: 60px 0 30px;
    background-color: var(--bg-light);
}

.pricing-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}

.pricing-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.pricing-promo-section {
    padding: 20px 0 60px;
}

.pricing-promo-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: var(--bg-alt);
    border-radius: 40px;
    border: 1px solid var(--primary-border);
    overflow: hidden;
}

.promo-left {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-tag {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    background-color: var(--primary-light);
    border: 1px solid var(--primary-border);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.promo-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
}

.promo-left p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.promo-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
}

.promo-checklist li svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    fill: currentColor;
}

.promo-right-image {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 300px;
}

.promo-badge-circle {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(214, 125, 144, 0.15);
    border: 2px solid var(--primary-border);
}

.promo-badge-circle span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.promo-badge-circle strong {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 800;
}

/* Inquiry Form */
.inquiry-form-section {
    padding: 20px 0 90px;
}

.inquiry-form {
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid var(--primary-border);
    padding: 60px;
    box-shadow: 0 15px 40px rgba(214, 125, 144, 0.04);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-col h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.form-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.form-field-group {
    margin-bottom: 25px;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.form-control-input,
.form-control-select,
.form-control-textarea {
    width: 100%;
    background-color: var(--bg-alt);
    border: 1.5px solid var(--primary-border);
    border-radius: 30px;
    padding: 15px 24px;
    font-size: 15px;
    color: var(--text-color);
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.form-control-textarea {
    border-radius: 20px;
    height: 140px;
    resize: none;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(214, 125, 144, 0.08);
}

.form-submit-wrapper {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid var(--primary-border);
    padding-top: 40px;
}

.btn-submit {
    padding: 16px 50px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(214, 125, 144, 0.2);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Alert Styling */
.alert {
    padding: 18px 24px;
    border-radius: 20px;
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: #f2faf5;
    border: 1px solid #d4ede0;
    color: #2b704c;
}

.alert-danger {
    background-color: #fdf3f2;
    border: 1px solid #f8dad6;
    color: #a83a2b;
    display: block;
}

.alert-danger ul {
    list-style: square;
    padding-left: 20px;
}

/* Responsive adjustment for pricing page */
@media (max-width: 991px) {
    .pricing-promo-card {
        grid-template-columns: 1fr;
    }

    .promo-right-image {
        height: 250px;
    }

    .inquiry-form {
        padding: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .inquiry-form {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .promo-left {
        padding: 30px 20px;
    }
}