/* Suggestions Page Specific Styles */
:root {
    --ct-maroon: #4a1516;
    --ct-dark-maroon: #2d0c0d;
    --ct-brown: #3d2422;
    --ct-deep: #1f0e0e;
    --ct-cream: #f5e6d3;
    --ct-gold: #c9973d;
    --ct-gold-light: #d4a84b;
    --ct-gold-dark: #a67c2e;
    --ct-beige: #e8dcc8;
}

/* Body styling - Clean Maroon Background */
body.suggestions-page {
    background: linear-gradient(180deg,
            #5a1a1b 0%,
            #4a1516 30%,
            #3d1213 70%,
            #2d0c0d 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}
/* Header Styling - Distinctive and Elevated */
.suggestions-header {
    position: relative;
    z-index: 200;
    background: linear-gradient(180deg,
            rgba(74, 21, 22, 0.98) 0%,
            rgba(45, 12, 13, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(45, 12, 13, 0.4);
    margin-top: 45px;
    opacity: 1;
    transform: none;
    visibility: visible;
}

body.suggestions-page .navbar {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.suggestions-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(90deg,
            var(--ct-gold) 0px,
            var(--ct-gold) 5px,
            transparent 5px,
            transparent 15px,
            var(--ct-maroon) 15px,
            var(--ct-maroon) 20px,
            transparent 20px,
            transparent 30px);
    opacity: 0.7;
}
.suggestions-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
}

.nav-logo a {
    display: block;
}

.nav-logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.suggestions-header .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.suggestions-header .nav-menu li a {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ct-cream);
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.suggestions-header .nav-menu li a span {
    font-weight: 600;
    color: var(--ct-gold);
}

.suggestions-header .nav-menu li a:hover {
    color: var(--ct-gold);
    background: rgba(201, 151, 61, 0.15);
}

.suggestions-header .nav-menu li a.active {
    color: var(--ct-gold);
    background: rgba(201, 151, 61, 0.2);
    border-bottom: 2px solid var(--ct-gold);
}

/* ============================================
   DROPDOWN MENU - Avanti's World
   ============================================ */
.suggestions-header .nav-dropdown {
    position: relative;
}

.suggestions-header .nav-dropdown .dropdown-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.suggestions-header .nav-dropdown .dropdown-arrow {
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.suggestions-header .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.suggestions-header .nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: linear-gradient(180deg,
            rgba(45, 12, 13, 0.98) 0%,
            rgba(74, 21, 22, 0.98) 100%);
    border: 1px solid rgba(201, 151, 61, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.suggestions-header .nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--ct-gold),
            transparent);
    border-radius: 2px;
}

.suggestions-header .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.suggestions-header .nav-dropdown .dropdown-menu li {
    margin: 0;
}

.suggestions-header .nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ct-cream);
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.suggestions-header .nav-dropdown .dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--ct-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggestions-header .nav-dropdown .dropdown-menu li a:hover {
    background: rgba(201, 151, 61, 0.15);
    color: var(--ct-gold);
    padding-left: 30px;
}

.suggestions-header .nav-dropdown .dropdown-menu li a:hover::before {
    opacity: 1;
}

.suggestions-header .nav-dropdown .dropdown-menu li:not(:last-child)::after {
    content: '';
    display: block;
    margin: 0 15px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 151, 61, 0.2),
            transparent);
}

/* Mobile Menu Toggle */
.suggestions-header .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.suggestions-header .menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--ct-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.suggestions-header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.suggestions-header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.suggestions-header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.suggestions-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #4a0e0e 0%, #7d1935 100%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/build/assets/img/mahal.png') center/cover;
    opacity: 0.15;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--ct-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-tamil {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #7d1935;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0.5rem auto;
    line-height: 1.6;
}

.section-subtitle-tamil {
    font-size: 1rem;
    color: #888;
    margin-top: 1rem;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Container */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9973d;
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 151, 61, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

/* Star Rating */
.rating-container {
    margin-top: 0.5rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.star-rating label:hover,
.star-rating label:hover~label {
    color: #c9973d;
    transform: scale(1.1);
}

.star-rating input:checked~label {
    color: #c9973d;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #7d1935 0%, #4a0e0e 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(125, 25, 53, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c9973d 0%, #a67c2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon svg {
    color: white;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #7d1935;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-card.highlight {
    background: linear-gradient(135deg, #7d1935 0%, #4a0e0e 100%);
    color: white;
}

.info-card.highlight h3 {
    color: #c9973d;
}

.info-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c9973d;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    gap: 0.8rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .suggestions-nav {
        padding: 10px 20px;
    }

    .suggestions-header .menu-toggle {
        display: flex;
    }

    .suggestions-header .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg,
                var(--ct-dark-maroon) 0%,
                var(--ct-maroon) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .suggestions-header .nav-menu.active {
        right: 0;
    }

    .suggestions-header .nav-menu li a {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .suggestions-header .nav-dropdown .dropdown-toggle {
        flex-direction: row;
        gap: 8px;
    }

    .suggestions-header .nav-dropdown .dropdown-arrow {
        margin-top: 0;
    }

    .suggestions-header .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 8px;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        box-shadow: none;
    }

    .suggestions-header .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }

    .suggestions-header .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .suggestions-header .nav-dropdown .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        text-align: center;
    }

    .suggestions-header .nav-dropdown .dropdown-menu li a:hover {
        padding-left: 20px;
    }

    .nav-logo img {
        height: 50px;
    }

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

    .hero-title-tamil {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 45px;
    }

    .suggestions-header .nav-menu li a {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}
