/* Base Reset & Variables */
:root {
    --primary-color: #b27c7c;
    /* Dusty Rose */
    --secondary-color: #2C2C2C;
    /* Dark Charcoal */
    --bg-color: #FCF9F9;
    /* Soft Rose White */
    --white: #FFFFFF;
    --light-gray: #f4f4f4;
    --text-color: #4a4a4a;
    --accent-pink: #F2E6E6;
    /* Pale Rose */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

.section-padding {
    padding: 4rem 0;
}

.bg-cream {
    background-color: #FAF5F5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}


.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
}

/* SEO Content Section */
.seo-section {
    padding: 80px 0;
    text-align: center;
}

.seo-text-only {
    max-width: 800px;
    margin: 0 auto;
}

.seo-text-only small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.seo-text-only h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.seo-text-only p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.seo-text-only strong {
    color: var(--secondary-color);
}

.seo-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }

    .seo-text-only h2 {
        font-size: 2.2rem;
    }

    .seo-btns {
        flex-direction: column;
        align-items: center;
    }

    .seo-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-accent {
    color: var(--primary-color);
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    font-size: 1rem;
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-whatsapp-btn {
    color: #25D366;
    font-size: 1.8rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    padding-top: 60px;
    /* offset for header if needed, usually 0 for fullscreen hero */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    /* Fallback to prevent white flash */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features */
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .separator {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

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

.feature-card {
    display: block;
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

a.feature-card {
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

/* Gallery Teaser in Index */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 80%);
    color: var(--white);
    opacity: 1;
    /* Visible by default */
    transition: var(--transition);
    transform: translateY(0);
    /* Normal position */
    z-index: 2;
}

.gallery-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-more {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 90%);
}

.gallery-item:hover .view-more {
    gap: 12px;
    /* Subtle arrow movement on hover */
}

/* About Teaser */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

/* Footer Premium Design */
.footer {
    background-color: #222020;
    color: #b0b0b0;
    padding: 60px 0 20px;
    /* Reduced from 80/30 */
    position: relative;
    overflow: hidden;
}

/* Gradient accent line at the top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    /* Reduced from 60 */
    margin-bottom: 30px;
    /* Reduced from 60 */
}

.footer-col h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Underline for headings */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-col ul li a {
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transform: translateX(5px);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.4rem;
    border: none;
}

.social-links a i {
    margin: 0;
    width: auto;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--white);
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-links a:hover i {
    transform: scale(1.1);
}


.social-links a.whatsapp {
    background: #25D366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
}

/* Animation Utilities */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 50px;
        right: -100%;
        width: 100%;
        height: auto;
        /* Height adapts to content */
        max-height: calc(100vh - 50px);
        background-color: var(--white);
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 30px 0;
        /* Balanced padding */
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        /* Tighter gap */
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 10px 0;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
        flex: 1;
        margin: 0;
        text-align: left;
        font-size: 1.5rem;
    }

    .header-whatsapp-btn {
        order: 2;
        flex: 0;
        display: flex;
        justify-content: center;
        min-width: 50px;
    }

    .mobile-nav-toggle {
        display: block;
        order: 3;
        margin: 0;
        padding: 0;
        /* Remove default padding */
        flex: 1;
        text-align: right;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Reduce Animations on Mobile */
    .animate-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .gallery-item img {
        transition: none !important;
    }

    .gallery-item:hover img {
        transform: none !important;
    }
}

/* Forms & Order Section - Global Premium Styles */
.order-section {
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(178, 124, 124, 0.1);
}

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

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

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    outline: none;
    box-shadow: 0 0 0 4px rgba(178, 124, 124, 0.08);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check input {
    width: auto;
    margin-top: 4px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.info-box {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 3px;
    background: var(--accent-pink);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.w-100 {
    width: 100%;
}

/* Custom styles for selects */
#guests {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b27c7c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}

/* Refined Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.pricing-card h3 {
    color: #8D6E63;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 1.15rem;
    color: #444;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-notes {
    max-width: 1100px;
    margin: 60px auto 0;
    text-align: left;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.pricing-notes h4 {
    color: #8D6E63;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
    color: #555;
}

.pricing-notes li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.pricing-notes li::before {
    content: "•";
    color: #8D6E63;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Highlight Card for Included Items */
.highlight-card {
    background: linear-gradient(135deg, #fdfaf3 0%, #fff9f0 100%);
    border: 2px solid #e8d5c4;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(232, 213, 196, 0.3);
}

.included-list li i {
    color: #2ecc71;
    font-size: 1.2rem;
    min-width: 20px;
}

.included-list li span {
    flex: 1;
}


@media (max-width: 768px) {
    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Page Specific Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(178, 124, 124, 0.3);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-card-info {
    transform: translateY(0);
}

.gallery-card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.gallery-card-info span {
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }
}

/* SEO Feature Box Styles */
.seo-feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

@media (min-width: 901px) {
    .seo-feature-box {
        margin-top: 65px;
        /* Matches height of h2 title on the left */
    }
}

.seo-feature-box small {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.seo-feature-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-list {
    margin: 25px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-item i {
    color: #2ecc71;
    font-size: 1.4rem;
    margin-top: 3px;
}

.feature-item span {
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Inclusive Box Styles */
.inclusive-box {
    background: #fdfaf3;
    padding: 20px;
    border-radius: 12px;
    border: 1px dashed var(--primary-color);
    margin: 20px 0;
}

.inclusive-box h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.inclusive-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.inclusive-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.inclusive-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

@media (max-width: 480px) {
    .inclusive-list {
        grid-template-columns: 1fr;
    }
}

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

/* Compact Feature & Contact Styles */
.feature-list-compact {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.feature-item-small i {
    color: #2ecc71;
}

.direct-contact-minimal {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-line i {
    color: var(--primary-color);
    width: 20px;
}

.contact-line a {
    color: inherit;
    font-weight: 600;
}

@media (max-width: 480px) {
    .feature-list-compact {
        flex-direction: column;
        gap: 12px;
    }
}

/* SEO Page Utilities & Styles */
.mb-4 {
    margin-bottom: 3rem;
}

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

.separator {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.separator::after {
    content: "";
    height: 2px;
    background: var(--accent-pink);
    flex: 1;
}

.styled-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.styled-list li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.styled-list li::before {
    content: "♥";
    color: var(--primary-color);
    position: absolute;
    left: -20px;
}

.cta-box {
    background: var(--accent-pink);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(178, 124, 124, 0.2);
}

.seo-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.seo-content-full h3 {
    margin-top: 30px;
    font-size: 1.8rem;
}

.seo-content-full p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* galeri section modern  */
/* Banner ana kapsayıcı */
.banner {
    width: 100%;
    min-height: 550px;
    height: 550px;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
    /* Substantial breathing room before the next section */
}

/* Slider container – unique class */
.slider-3d-cover {
    position: absolute;
    width: 200px;
    height: 240px;
    top: 45%;
    /* Slightly higher to give more room at the bottom during rotation */
    left: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) perspective(600px);
    animation: autoRun 40s linear infinite;
    z-index: 2;
}

/* Slider animasyonu */
@keyframes autoRun {
    from {
        transform: translate(-50%, -50%) perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }

    to {
        transform: translate(-50%, -50%) perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}

/* Her bir görsel kapsayıcısı */
.slider-3d-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 12px;
    /* opsiyonel */
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(400px);
}

/* Görselleri kapsayıcıya tam doldur */
.slider-3d-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive – tablet */
@media screen and (max-width: 1023px) {
    .banner {
        min-height: 430px;
        height: 430px;
    }

    .slider-3d-cover {
        width: 200px;
        height: 240px;
    }

    .slider-3d-item {
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(400px);
    }
}

/* Responsive – mobil */
@media screen and (max-width: 767px) {
    .banner {
        min-height: 380px;
        height: 380px;
    }

    .slider-3d-cover {
        width: 150px;
        height: 190px;
    }

    .slider-3d-item {
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)) translateZ(280px);
    }
}

/* Ana bölüm stilizasyonu */
.process-image-section {
    padding: 40px 15px;
    /* Dikey boşluk ve yanlarda küçük bir boşluk */
    background-color: #fdfaf6;
    /* Görselin arka planıyla uyumlu soft bir renk */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Okunabilir bir font */
    text-align: center;
    /* İçeriği ortalar */
}

/* Görseli sarmalayan kapsayıcı */
.image-container {
    max-width: 600px;
    /* Görselin maksimum genişliği (mobil için ideal, masaüstünde ortalanır) */
    margin: 0 auto;
    /* Görseli yatayda ortalar */
    padding: 0;
    /* Ekstra boşlukları sıfırlar */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    /* Hafif bir gölge efekti verir, profesyonel bir hava katar */
    border-radius: 15px;
    /* Köşeleri yumuşatır */
    overflow: hidden;
    /* Köşe yuvarlamanın içindeki görselin taşmasını engeller */
}

/* Responsive görsel stili */
.responsive-image {
    max-width: 100%;
    /* Görselin kapsayıcısının genişliğine göre boyutlanmasını sağlar */
    height: auto;
    /* Oranlarını koruyarak yüksekliği otomatik ayarlar */
    display: block;
    /* Görselin altındaki boşluğu kaldırır */
}

/* Masaüstü ekranlar için optimizasyon */
@media (min-width: 768px) {
    .process-image-section {
        padding: 80px 30px;
        /* Masaüstünde daha fazla dikey boşluk */
    }

    .image-container {
        max-width: 700px;
        /* Masaüstünde görselin biraz daha geniş olmasını sağlar */
    }
}

/* Büyük masaüstü ekranlar için ekstra optimizasyon (isteğe bağlı) */
@media (min-width: 1200px) {
    .image-container {
        max-width: 500px;
        /* Daha büyük ekranlarda görseli biraz daha geniş gösterir */
    }
}

/* Pricing Info Box */
.pricing-info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    border-left: 5px solid var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-info-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .pricing-info-box {
        padding: 1.5rem;
    }

    .pricing-info-box p {
        font-size: 1rem;
    }
}

/* Pricing Grid Enhancements */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.highlight-card {
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--accent-pink);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.included-list i {
    color: #25D366;
    margin-right: 10px;
}

/* Ultra-Wide Screens Optimization (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .services .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Split Section for Landing Pages */
.hero-split {
    overflow: hidden;
}

.sub-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.image-wrapper-premium {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.image-wrapper-premium::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.rounded-shadow-premium {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    width: 100%;
}

.rounded-shadow-premium:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .hero-split .grid-2-cols {
        gap: 30px;
    }

    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .image-wrapper-premium::before {
        display: none;
    }

    .image-wrapper-premium {
        padding-right: 0;
    }

    .hero-split {
        padding-top: 100px;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }
}