/* ===================================================
   DESTINATION WEDDING PAGE - MINIMAL CSS
   Only page-specific styles, no navigation/footer
   Base styles from main theme included only if needed
   =================================================== */

/* ===================================================
   GLOBAL RESETS (required when style.css is not loaded)
   =================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a1a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Base Variables — must include ALL variables nav.css depends on */
:root {
    --primary: #00f0ff;
    --primary-dark: #008cff;
    --text-light: #b0b0ff;
    --glow: 0 0 15px rgba(0, 240, 255, 0.7);
    --light-bg: rgba(10, 10, 30, 0.85);
    --transition: all 0.3s ease;
    /* Nav layout heights — nav.css uses these to position top-bar and navbar correctly */
    --top-bar-height-desktop: 50px;
    --navbar-height-desktop: 70px;
    --top-bar-height-mobile: 90px;
    --navbar-height-mobile: 70px;
}

/* Common Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-dark {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.dest-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.95) 0%, rgba(26, 26, 62, 0.95) 100%),
                url('../assets/destination-hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.dest-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 140, 255, 0.1) 100%);
    z-index: 1;
}

.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.dest-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dest-hero-title .highlight {
    display: block;
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 15px;
    text-shadow: var(--glow);
}

.dest-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.dest-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0a0a1a;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.6);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
}

.cta-btn.secondary:hover {
    background: var(--primary);
    color: #0a0a1a;
    transform: translateY(-3px);
}

.dest-hero-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dest-hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1rem;
}

.dest-hero-badges .badge i {
    font-size: 1.5rem;
    color: var(--primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

@media (max-width: 768px) {
    .dest-hero {
        min-height: 500px;
    }
    .dest-hero-title {
        font-size: 2rem;
    }
    .dest-hero-title .highlight {
        font-size: 1.5rem;
    }
    .dest-hero-subtitle {
        font-size: 1.1rem;
    }
    .dest-hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 30px;
        font-size: 1rem;
    }
    .dest-hero-badges {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===================================================
   SECTION HEADERS
   =================================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===================================================
   INTRODUCTION SECTION
   =================================================== */
.dest-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text {
    color: #fff;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.intro-text strong {
    color: var(--primary);
    font-weight: 600;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(0, 140, 255, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: var(--glow);
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .dest-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .intro-stats {
        flex-direction: column;
    }
}

/* ===================================================
   WHY SPECIAL SECTION
   =================================================== */
.why-special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.special-card {
    background: rgba(10, 10, 30, 0.6);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.special-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, rgba(0, 140, 255, 0.15) 100%);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--glow);
}

.card-icon i {
    font-size: 2.5rem;
    color: #0a0a1a;
}

.special-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.special-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-special-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-special-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   OUR APPROACH SECTION
   =================================================== */
.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.approach-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 4rem;
    color: var(--primary);
    cursor: pointer;
}

.approach-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.approach-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.approach-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.approach-icon i {
    font-size: 1.8rem;
    color: #0a0a1a;
}

.approach-details h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.approach-details p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================================
   FEATURED DESTINATIONS SECTION
   =================================================== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    background: rgba(10, 10, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
}

.overlay-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: var(--glow);
}

.overlay-content p {
    color: #fff;
    margin-bottom: 20px;
}

.overlay-btn {
    padding: 10px 30px;
    background: var(--primary);
    color: #0a0a1a;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.overlay-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.destination-info {
    padding: 25px;
}

.destination-info h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.destination-info h4 i {
    color: var(--primary);
    margin-right: 8px;
}

.destination-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 15px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag i {
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   CINEMATIC STYLES SECTION
   =================================================== */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-card {
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8) 0%, rgba(26, 26, 62, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.style-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.style-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2) 0%, rgba(0, 140, 255, 0.2) 100%);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.style-icon i {
    font-size: 3rem;
    color: var(--primary);
}

.style-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.style-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.style-features {
    list-style: none;
    text-align: left;
}

.style-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 10px;
}

.style-features li i {
    color: var(--primary);
    margin-right: 10px;
}

@media (max-width: 992px) {
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .styles-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   PROCESS TIMELINE SECTION
   =================================================== */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
}

.process-step {
    position: relative;
    padding-left: 140px;
    margin-bottom: 60px;
}

.step-number {
    position: absolute;
    left: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: #0a0a1a;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    z-index: 2;
}

.step-content {
    background: rgba(10, 10, 30, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.step-content ul li {
    color: var(--text-light);
    padding-left: 5px;
}

.step-content ul li i {
    color: var(--primary);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    .process-step {
        padding-left: 90px;
    }
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .step-content ul {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   BEHIND THE SCENES SECTION
   =================================================== */
.bts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.bts-card {
    background: linear-gradient(135deg, rgba(10, 10, 30, 0.8) 0%, rgba(26, 26, 62, 0.8) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
}

.bts-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.bts-image {
    height: 250px;
    overflow: hidden;
}

.bts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bts-card:hover .bts-image img {
    transform: scale(1.1);
}

.bts-content {
    padding: 30px;
}

.bts-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.bts-content h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.bts-content p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .bts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   PORTFOLIO SECTION
   =================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-item {
    background: rgba(10, 10, 30, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.3);
}

.portfolio-video {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-video img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.portfolio-item:hover .play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-overlay i {
    font-size: 4rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.portfolio-item:hover .play-overlay i {
    transform: scale(1.2);
    text-shadow: var(--glow);
}

.portfolio-details {
    padding: 25px;
}

.portfolio-details h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-details p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.portfolio-details p i {
    color: var(--primary);
    margin-right: 8px;
}

.portfolio-desc {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   FAQS SECTION
   =================================================== */
.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(10, 10, 30, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    .faq-question h3 {
        font-size: 1.1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: #0a0a1a;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

.contact-form {
    background: rgba(10, 10, 30, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.form-group select option {
    background: #1a1a3e;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    color: #0a0a1a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.cta-btn.call {
    background: linear-gradient(135deg, #FF6B6B 0%, #C92A2A 100%);
    color: #fff;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
    }
}

/* ===================================================
   RESPONSIVE ADJUSTMENTS
   =================================================== */
@media (max-width: 480px) {
    .section-padding {
        padding: 40px 0;
    }
    .container {
        padding: 0 15px;
    }
}

/* ===================================================
   NAV-AWARE LAYOUT FIXES (for Ourwork pages with nav)
   Ensures hero & content don't hide under fixed header
   =================================================== */

/* main-website wrapper needed for .show-website class to work */
.main-website {
    display: block;
    opacity: 1;
}

/* .main-content padding is set by script.js dynamically, 
   but set a sane default here so hero isn't hidden on slow JS load */
.main-content {
    padding-top: calc(var(--top-bar-height-desktop, 50px) + var(--navbar-height-desktop, 70px));
    transition: padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 992px) {
    .main-content {
        padding-top: calc(var(--top-bar-height-mobile, 90px) + var(--navbar-height-mobile, 70px));
    }
}

/* Hero should start after the header, so set min-height accordingly */
.dest-hero {
    min-height: calc(100vh - var(--top-bar-height-desktop, 50px) - var(--navbar-height-desktop, 70px));
}

@media (max-width: 992px) {
    .dest-hero {
        min-height: calc(100vh - var(--top-bar-height-mobile, 90px) - var(--navbar-height-mobile, 70px));
    }
}

/* WhatsApp floating button */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-btn i {
    font-size: 1.8rem;
    color: #fff;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* Footer extra styles needed for Ourwork pages */
.footer-column h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.designed-by {
    color: var(--text-light);
    font-size: 0.9rem;
}

.designed-by a {
    color: var(--primary);
    text-decoration: none;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary);
}

.social-section {
    padding: 40px 5%;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.social-section h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.social-slider {
    overflow: hidden;
    width: 100%;
}

.social-track {
    display: flex;
    gap: 20px;
    animation: scroll-social 30s linear infinite;
    width: max-content;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    color: var(--text-light);
    text-decoration: none;
    min-width: 90px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.social-item:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

@keyframes scroll-social {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}