/* 
PIXELRAY FILMS Website Styles
Main CSS File
*/

/* ===== GLOBAL STYLES ===== */
:root {
    /* Brand Colors */
    --primary-red: #ff0000;
    --primary-green: #006400; /* Changed from bright green to dark green */
    --primary-blue: #00a0ff;
    --text-dark: #111111;
    --text-medium: #555555;
    --text-light: #888888;
    --background-light: #ffffff;
    --background-off-white: #f9f9f9;
    --background-light-gray: #f2f2f2;
    --accent-gray: #e0e0e0;
    --accent-dark: #333333;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-spacing: 100px;
    --element-spacing: 30px;
    --small-spacing: 15px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Highlight Colors */
.highlight-red {
    color: var(--primary-red);
}

.highlight-green {
    color: var(--primary-blue);
}

.highlight-blue {
    color: var(--primary-blue);
}

.highlight-text {
    font-weight: 600;
}

.handwritten {
    font-family: 'Kalam', cursive;
    color: var(--primary-blue);
    font-weight: 700;
}

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

.btn-primary {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
    border: 2px solid #0056b3;
}

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

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: var(--background-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--accent-gray);
}

.btn-outline:hover {
    border-color: var(--text-dark);
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 65px;
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin-left: 30px;
    position: relative;
}

/* Dropdown Menu Styles */
.nav-links ul li a.has-dropdown {
    position: relative;
    padding-right: 20px;
}

.nav-links ul li a.has-dropdown:after {
    content: '\f107'; /* Font Awesome down arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.nav-links ul li:hover a.has-dropdown:after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-light);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transform-origin: top center;
    transition: all 0.2s ease;
    z-index: 100;
    border-top: none;
    backdrop-filter: blur(10px);
}

.nav-links ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    display: block;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown li a:before {
    content: '\f054'; /* Font Awesome right arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.dropdown li a:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-left: 3px solid #007bff;
    transform: translateX(2px);
}

.dropdown li a:hover:before {
    opacity: 1;
}

.nav-links ul li a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--text-dark);
    transition: width 0.3s ease;
}

.nav-links ul li a:hover:after,
.nav-links ul li a.active:after {
    width: 100%;
}

.nav-links ul li a.active {
    font-weight: 700;
}

.fa-bars, .fa-times {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    background-color: var(--background-off-white);
    position: relative;
    overflow: hidden;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0;
    font-family: var(--heading-font);
}

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

/* Page Hero Sections */
.page-hero {
    padding: 150px 0 80px;
    background-color: var(--background-off-white);
    text-align: center;
    position: relative;
}

.page-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero:after {
    background-image: url('../images/about-hero-bg.jpg');
}

.services-hero:after {
    background-image: url('../images/services-hero-bg.jpg');
}

.packages-hero:after {
    background-image: url('../images/packages-hero-bg.jpg');
}

.contact-hero:after {
    background-image: url('../images/contact-hero-bg.jpg');
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.service-icon i {
    font-size: 30px;
    color: var(--text-dark);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ===== SHOWREEL SECTION ===== */
.showreel {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
}

.video-container {
    margin-top: 50px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-dark);
}

/* Play button for video items */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-icon i {
    color: white;
    font-size: 24px;
}

.video-item:hover .play-icon {
    background-color: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Placeholder thumbnail styling */
.placeholder-thumbnail {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-thumbnail img {
    object-fit: contain !important;
    padding: 20px;
    max-height: 80%;
}

.placeholder-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--background-light);
    cursor: pointer;
    background-image: url('../images/showreel-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/*
.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

*/

.youtube-embed {
  /* Set up the aspect-ratio box */
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625) */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.youtube-embed iframe {
  /* Make the iframe fill the box */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.prev-slide, .next-slide {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
    position: relative;
    z-index: 1;
    overflow: visible;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-slider {
    margin-top: 50px;
    display: flex !important; /* Force display flex */
    gap: 30px;
    overflow-x: auto !important; /* Force overflow auto */
    padding-bottom: 30px;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    width: 100% !important; /* Force full width */
    padding: 20px 0 30px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

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

.testimonial-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-control:hover {
    background-color: var(--text-dark);
    color: var(--background-light);
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px !important;
    max-width: 400px;
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    scroll-snap-align: start;
    border-left: 3px solid var(--primary-blue);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--accent-gray);
    opacity: 0.5;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== CALL TO ACTION ===== */
.cta {
    padding: 80px 0;
    background-color: var(--background-light-gray);
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
}

/* Fixed CTA Section */
.fixed-cta {
    background: white;
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
}

.fixed-cta .cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fixed-cta p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--accent-dark);
    color: var(--background-light);
    padding: 50px 0 20px; /* Reduced padding */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--accent-gray);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--background-light);
    font-size: 1.1rem; /* Smaller font size */
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0;
}

.footer-links ul li a {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--background-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-contact p {
    color: var(--accent-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.9rem; /* Smaller font size */
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--background-light);
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    width: 50px; /* Increased size */
    height: 50px; /* Increased size */
    background-color: var(--primary-blue); /* Blue by default */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-light);
    font-size: 1.2rem; /* Larger icon size */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); /* Blue glow */
}

.social-icons a:hover {
    background-color: #2980b9; /* Darker blue on hover */
    transform: translateY(-8px) scale(1.1); /* Enhanced hover effect */
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5); /* Stronger glow on hover */
}

.copyright {
    text-align: center;
    padding-top: 20px; /* Reduced padding */
    font-size: 0.8rem; /* Smaller font size */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gray);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
    padding: var(--section-spacing) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Team Section */
.team-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: all 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.member-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-bio {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-spacing) 0;
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--background-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-icon i {
    font-size: 30px;
    color: var(--text-dark);
}

.feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-gray);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-green);
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 0;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.video-placeholder-container {
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border: 2px dashed #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-placeholder:hover {
    background-color: #333;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    font-size: 1rem;
    text-align: center;
}

.video-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-hero .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-section {
    padding: 80px 0;
}

/* Simplified Services Grid */
.services-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card-simple {
    background-color: var(--background-light);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-simple:hover .service-icon-large {
    transform: scale(1.1);
}

.service-icon-large i {
    font-size: 28px;
    color: white;
}

.service-card-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-simple p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-card-simple .btn {
    margin-top: auto;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.sub-services-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 30px;
}

.sub-services-list li {
    margin-bottom: 5px;
}

/* Featured Work Section */
.featured-work {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--primary-red);
}

.featured-work h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.featured-work h3 i {
    margin-right: 10px;
    color: var(--primary-red);
}

.featured-video {
    margin-top: 15px;
}

.video-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon i {
    color: white;
    font-size: 24px;
}

.video-link:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-link:hover .play-icon {
    background-color: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.video-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Process Section */
.process-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gray);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* How It Works Section - Vertical Layout */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.vertical-process-steps {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.vertical-process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.vertical-step-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.vertical-step-item:last-child {
    margin-bottom: 0;
}

.step-left {
    flex: 0 0 80px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 160, 255, 0.3);
    transition: all 0.3s ease;
}

.vertical-step-item:hover .step-number-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 160, 255, 0.4);
}

.step-right {
    flex: 1;
    margin-left: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
    text-align: center;
}

.vertical-step-item:hover .step-right {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-icon-large {
    width: 60px;
    height: 60px;
    background: var(--accent-dark);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.step-right h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-right p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.step-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.highlight-tag {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blue Consultation Button */
.btn-consultation {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-consultation:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Why Process Section - Simplified */
.why-process-section {
    padding: 80px 0;
    background-color: var(--background-off-white);
    text-align: center;
}

.simple-benefits {
    max-width: 700px;
    margin: 50px auto 0;
}

.benefit-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-icon-simple {
    width: 60px;
    height: 60px;
    background: var(--accent-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Films Showcase */
.films-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.films-showcase h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.film-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.film-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.film-row:nth-child(even) {
    flex-direction: row-reverse;
}

.film-thumbnail {
    position: relative;
    flex: 0 0 50%;
    height: 300px;
    overflow: hidden;
}

.film-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.film-row:hover .film-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.play-btn:hover {
    background: #c0392b;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.play-btn i {
    font-size: 1.2rem;
}

.film-details {
    flex: 1;
    padding: 40px;
}

.film-details h3 {
    margin: 0 0 15px 0;
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 1px;
}

.film-year {
    margin: 0 0 10px 0;
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.1rem;
}

.film-credits {
    margin: 0 0 20px 0;
    color: #7f8c8d;
    font-style: italic;
    font-size: 1rem;
}

.film-description {
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Portfolio Showcase */
.portfolio-showcase {
    padding: var(--section-spacing) 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--accent-gray);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--text-dark);
    color: var(--background-light);
    border-color: var(--text-dark);
}

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

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item,
.video-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.video-item {
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image,
.video-thumbnail,
.video-container-preview {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16/9;
}

.portfolio-image img,
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    display: none;
}

.video-container-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item:hover .video-thumbnail img,
.video-item:hover .video-preview {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-item .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

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

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

.video-item:hover .video-preview {
    filter: brightness(0.7);
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

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

.overlay-content {
    text-align: center;
    color: var(--background-light);
    padding: 20px;
}

.video-content {
    padding: 15px;
    background-color: #fff;
}

.video-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.3;
}

.video-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.overlay-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.overlay-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-view {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--background-light);
    border-radius: 30px;
    color: var(--background-light);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--background-light);
    color: var(--text-dark);
}

.btn-view i {
    margin-left: 5px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--background-light);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-green);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== PACKAGES PAGE STYLES ===== */
.packages-intro {
    padding: 50px 0 0;
    text-align: center;
}

.pricing-packages {
    padding: var(--section-spacing) 0;
}

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

.package-card {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-green);
    color: var(--background-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--accent-gray);
}

.package-header h2 {
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-medium);
}

.package-features {
    padding: 30px;
}

.package-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.package-features ul li i {
    margin-right: 10px;
    color: var(--primary-green);
}

.package-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.packages-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-medium);
    font-style: italic;
}

.packages-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

/* Custom Solutions */
.custom-solutions {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
    text-align: center;
}

.solutions-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.custom-feature {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon i {
    font-size: 25px;
    color: var(--text-dark);
}

.custom-feature h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.custom-feature p {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-spacing) 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--accent-gray);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--background-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-toggle {
    margin-left: 20px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--background-light-gray);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Responsive Design for Films */
@media (max-width: 768px) {
    .film-row {
        flex-direction: column !important;
        gap: 0;
    }
    
    .film-thumbnail {
        flex: none;
        width: 100%;
        height: 250px;
    }
    
    .film-details {
        padding: 30px 25px;
    }
    
    .film-details h3 {
        font-size: 1.5rem;
    }
    
    .film-description {
        font-size: 1rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: var(--section-spacing) 0;
}

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

.contact-info {
    padding: 30px;
    background-color: var(--background-light-gray);
    border-radius: 10px;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    font-size: 20px;
    color: var(--primary-blue);
}

.info-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-form {
    padding: 30px;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent-gray);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

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

/* Map Section */
.map-section {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light-gray);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--accent-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-medium);
    font-style: italic;
}