/* Hero Sections */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 80px 0 40px;
}

/* Slideshow Styles */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slide-prev, .slide-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-prev:hover, .slide-next:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(212, 175, 55, 0.4) 100%), url('../images/restaurant-interior.webp') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
}

.hero-content {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    z-index: 5;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.5s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-title .text-gradient {
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 0.8s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease 1.1s forwards;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 3.2rem);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about-bg-element {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.signature img {
    height: 80px;
    margin-right: 20px;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Specialties Section */
.specialties {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe1 100%);
    position: relative;
    overflow: hidden;
}

.specialty-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-content {
    padding: 25px;
}

.specialty-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.specialty-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.specialty-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    background: url('../images/restaurant-interior.webp') center/cover no-repeat;
    color: white;
    z-index: auto;
    display: block;
    clear: both;
    margin-bottom: 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(212, 175, 55, 0.7) 100%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content::before, .testimonial-content::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
    position: absolute;
    line-height: 1;
}

.testimonial-content::before {
    top: -20px;
    left: -20px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Menu Page Styles - for items with images (home page menu preview) */
.menu-grid .menu-item {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.menu-grid .menu-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.item-image {
    flex: 0 0 150px;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-grid .menu-item:hover .item-image img {
    transform: scale(1.1);
}

.item-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.item-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--dark);
    flex: 1;
    margin-right: 15px;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Item badge for menu items with images (uses absolute positioning) */
.menu-item .item-image + .item-content .item-badge,
.menu-item[class*="item-image"] .item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Item badge styling */
.item-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary);
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Menu Category Animation */
.menu-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-category.active {
    display: block;
}

/* Offers Section */
.offers {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0ebe1 100%);
}

.offer-card {
    padding: 40px 30px;
    text-align: center;
}

.offer-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.offer-price {
    margin: 20px 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
    font-size: 1.2rem;
}

.discounted-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 2rem;
}

/* Location Page Styles */
.location {
    overflow-x: hidden;
}

.location-info h2 {
    margin-bottom: 30px;
    color: var(--dark);
}

.info-card {
    display: flex;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
    max-width: 100%;
    box-sizing: border-box;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.info-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.3rem;
}

.map-container {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.map-container:hover {
    box-shadow: var(--shadow-heavy);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-directions-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    white-space: nowrap;
}

.map-directions-btn:hover {
    transform: translateX(-50%) translateY(-5px);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 30px;
    text-align: center;
}

.map-image {
    margin: 20px 0;
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Directions Section */
.direction-method {
    padding: 40px 30px;
    text-align: center;
}

.direction-method h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Attractions Section */
.attraction-image {
    height: 200px;
    overflow: hidden;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 25px;
    position: relative;
}

.attraction-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

/* Reservation Page Styles */
.reservation-form-container h2, .reservation-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

/* Private Dining Section */
.private-dining-info ul {
    margin: 20px 0;
}

.private-dining-info li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.private-dining-info li i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.private-dining-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.private-dining-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.private-dining-image:hover img {
    transform: scale(1.05);
}

/* Contact Page Styles */
.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: var(--primary);
}

.social-media {
    margin-top: 40px;
}

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

/* FAQ Section */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

/* FAQ Answer styles - using !important to ensure they work with inline overrides */
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 2000px; /* Increased for longer answers */
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Icon rotation for chevron-down style */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Team Section */
.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Ensure footer stays below content sections like testimonials */
.footer {
    position: relative;
    z-index: auto;
    display: block;
    clear: both;
    margin-top: 0;
}

/* Error Page Styles (404, 403, 500) */
.error-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(212, 175, 55, 0.1));
    position: relative;
    overflow: hidden;
}

.error-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/restaurant-interior.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.error-code {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    animation: pulse 2s ease-in-out infinite;
}

.error-title {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Success Page Styles */
.success-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.95), rgba(212, 175, 55, 0.2));
    position: relative;
    overflow: hidden;
}

.success-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/restaurant-interior.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.success-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
}

.success-icon {
    font-size: 100px;
    color: var(--accent);
    margin-bottom: 30px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.success-message {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.success-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-heavy);
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.success-info h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.success-info .contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.success-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--dark);
    padding: 15px 25px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.success-info .contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    background: var(--gold-gradient);
    color: var(--dark);
}

.success-info .contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.success-info .contact-item:hover i {
    color: var(--dark);
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* @keyframes fadeUp - defined in animations.css */

/* Footer Order Buttons (for error/success pages) */
.footer-order-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-order-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
}

.footer-order-note {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* ============================================
   HOMEPAGE SECTIONS - PROFESSIONAL DESIGN
   ============================================ */

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonials-section .section-title {
    color: var(--primary);
}

.testimonials-section .section-subtitle {
    color: #ccc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-card p {
    color: #eee;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author .author-source {
    color: #999;
    font-size: 0.85rem;
}

.testimonials-section .section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-section .section-cta .btn {
    margin: 0 0.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #f9f9f9;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    background: #fff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Homepage FAQ Section */
.home-faq-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.home-faq-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.home-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.home-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.home-faq-item.active {
    border-color: rgba(212, 175, 55, 0.3);
}

.home-faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.3s ease;
}

.home-faq-question:hover {
    background: #fafafa;
}

.home-faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.home-faq-item.active .home-faq-question i {
    transform: rotate(180deg);
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    color: #555;
    line-height: 1.7;
}

.home-faq-item.active .home-faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.home-faq-answer a {
    color: var(--primary);
    text-decoration: none;
}

.home-faq-answer a:hover {
    text-decoration: underline;
}

/* Quick Links Section */
.quick-links-section {
    background: #fff;
}

.related-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9f9f9;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-link:hover {
    transform: translateX(5px);
    background: #fff;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-link i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.related-link:hover i {
    transform: scale(1.2);
}