/* ================================
   GLOBAL STYLES & RESET
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #2563eb;
    --primary-green: #10b981;
    --dark-blue: #1e40af;
    --light-blue: #3b82f6;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #f3f4f6;
    --gray: #6b7280;
    --dark-gray: #374151;
    --black: #111827;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-family: 'Poppins', 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
}

/* ================================
   NAVIGATION BAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.hero-logo {
    height: 48px;
    width: auto;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    flex-direction: column;
}

.dropdown-menu li a {
    color: var(--dark-gray);
    padding: 10px 20px;
    display: block;
    transition: 0.3s;
    font-size: 0.9rem;
    text-align: left;
}

.dropdown-menu li a:hover {
    color: var(--primary-blue);
    background-color: var(--light-gray);
}

/* Show Dropdown on Hover (Desktop) */
@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

/* ================================
   HERO SECTION (HOME PAGE)
   ================================ */
.hero {
    margin-top: 80px;
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.feature-icon {
    color: var(--primary-green);
    font-weight: 700;
}

/* ===== Dropdown Menu ===== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

/* Hover desktop */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* icon spacing */
.dropdown-toggle i {
    margin-left: 6px;
    font-size: 12px;
}


/* Video Container */
.hero-video {
    animation: fadeInRight 1s ease;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ================================
   SERVICES OVERVIEW SECTION
   ================================ */
.services-overview {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--spacing-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-lg);
    background-color: var(--off-white);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}



/* ================================
   PAGE HERO (INTERNAL PAGES)
   ================================ */
.page-hero {
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */
.about-content {
    padding: var(--spacing-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.lead-text {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.about-text p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--light-gray);
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    /* ปรับตามดีไซน์ */
    border-radius: 16px;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0f2fe, #dbeafe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 80%;
    height: 80%;
}

/* Skills Section */
.skills-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--light-gray);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.skill-category {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.skill-category h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.skill-list {
    list-style: none;
}

.skill-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.skill-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* showcase-section */

.showcase-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* แสดงแค่ 1 แถว */
.showcase-grid.limited {
    max-height: 420px;
    /* ปรับตามความสูง card */
}

/* แสดงทั้งหมด */
.showcase-grid.expanded {
    max-height: 3000px;
}

/* ปุ่ม */
.toggle-wrapper {
    text-align: center;
    margin-top: 30px;
}

.toggle-btn {
    background: none;
    border: 2px solid #1e90ff;
    color: #1e90ff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-btn:hover {
    background: #1e90ff;
    color: #fff;
}

/* ===== Fullscreen Modal ===== */
.media-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.media-modal.active {
    display: flex;
}

.media-modal video,
.media-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

/* ทำให้ thumbnail ดูคลิกได้ */
.work-video,
.work-thumb1 img {
    cursor: pointer;
}


/* ===== Modal Navigation ===== */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 20px;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
    border-radius: 5px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

/* ===== Card ===== */
.work-card {
    max-width: 220px;
    margin: 0 auto;
}

.work-card1 {
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card1:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.work-thumb1 img {
    transition: transform 0.4s ease;
}

.work-card1:hover img {
    transform: scale(1.05);
}

.work-card {
    width: 100%;
    margin: 0 auto;
}

.work-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

/* Image */
.work-thumb {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    position: relative;
    /* Context for absolute positioning */
    cursor: pointer;
}

/* Play Button Overlay */
.work-thumb::after {
    content: '▶';
    /* Simple play symbol, or use FontAwesome if available */
    font-size: 3rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    /* Let clicks pass through to video/parent */
    transition: opacity 0.3s;
}

.work-thumb:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.work-thumb1 {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.work-thumb1 img {
    width: 100%;
    height: auto;
    /* ⭐ รักษาสัดส่วนรูป */
    display: block;
    object-fit: contain;
    /* ❗ ไม่ครอป */
}

.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content */
.work-body {
    padding: 20px;
}

.work-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.work-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Tags */
.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.work-tags li {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
}



/* ================================
   PACKAGES PAGE STYLES
   ================================ */
.packages-section {
    padding: var(--spacing-2xl) 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.package-card {
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.package-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.package-name {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: var(--spacing-xs);
}

/* เครื่องหมายถูก */
.package-features li.yes::before {
    content: "✓ ";
    color: #28a745;
    /* เขียว */
    font-weight: bold;
}

/* เครื่องหมายกากบาท */
.package-features li.no::before {
    content: "✕ ";
    color: #dc3545;
    /* แดง */
    font-weight: bold;
}

.package-tagline {
    color: var(--gray);
    font-size: 0.9rem;
}

.package-price {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

.package-features ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.package-features li {
    padding: var(--spacing-xs) 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.package-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.package-button:hover {
    background-color: var(--dark-blue);
    transform: scale(1.1);
}

/* Modal Navigation */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 20px;
    cursor: pointer;
    z-index: 1010;
    transition: 0.3s;
    user-select: none;
    border-radius: 5px;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-nav.prev {
    left: 20px;
}

.modal-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .modal-nav {
        font-size: 2rem;
        padding: 10px;
    }

    .modal-nav.prev {
        left: 10px;
    }

    .modal-nav.next {
        right: 10px;
    }
}

/* Modal Content */
/* Separating modal video from additional services to fix background */

.additional-services {
    padding: var(--spacing-2xl) 0;
    background-color: var(--light-gray);
}

.section-description {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: var(--spacing-sm);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.addon-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    /* ส่วนหัวกับ icon ยังอยู่กลาง */
    transition: var(--transition);
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.addon-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.addon-list {
    text-align: left;
    /* ชิดซ้าย */
    margin-top: var(--spacing-md);
    padding-left: 1.2rem;
    /* ระยะจุด bullet */
}

.addon-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.addon-card h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.addon-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.addon-price {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.1rem;
}



/* ================================
   CONTACT PAGE STYLES
   ================================ */
.contact-section {
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper h2,
.contact-info-wrapper {
    margin: 0 auto;
    text-align: center;
}

.form-description,
.contact-info-wrapper>p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: var(--spacing-xs);
    display: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group input.error+.error-message,
.form-group textarea.error+.error-message {
    display: block;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Contact Info Refresh - Premium Style */
.contact-info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    /* Better alignment for premium look */
    gap: 12px;
    /* Tighter gap */
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
}

.contact-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 61, 145, 0.1);
    /* Subtle brand color shadow */
    border-color: var(--primary-blue);
}

.info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Circular for premium classic look */
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .info-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.info-content {
    flex-grow: 1;
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
    /* Force left align */
}

.info-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    /* Force left align */
}

/* Social Media Section Refresh */
.social-connect {
    text-align: center;
    margin-top: 40px;
}

.social-connect h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.social-connect h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--dark-blue);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #000000;
}



.social-links h3 {
    text-align: center;
}

/* Social Links Block */
.social-connect {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #eee;
}

.social-connect h3 {
    margin-bottom: var(--spacing-md);
    color: var(--black);
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--dark-blue);

    .social-icon:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    /* Brand Colors */
    .social-icon.facebook:hover {
        background-color: #1877F2;
    }

    .social-icon.instagram:hover {
        background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    }

    .social-icon.tiktok:hover {
        background-color: #000000;
    }



    /* ================================
   FOOTER
   ================================ */
    .footer {
        background-color: var(--black);
        color: var(--white);
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }



    .footer-bottom {
        padding-top: var(--spacing-md);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
    }

    /* ================================
   ANIMATIONS
   ================================ */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* ================================
   RESPONSIVE DESIGN
   ================================ */

    /* Tablet */
    @media (max-width: 968px) {

        .hero-container,
        .about-grid,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
        }

        .hero-video {
            order: -1;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .page-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .stats-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Mobile & Tablet (Updated Breakpoint) */
    @media (max-width: 1024px) {
        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            gap: 0;
            flex-direction: column;
            background-color: var(--white);
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: var(--spacing-lg) 0;
        }

        /* Mobile Dropdown */
        .dropdown-menu {
            position: static;
            box-shadow: none;
            background-color: #f8f9fa;
            display: none;
            /* Hidden by default, toggled via JS */
            width: 100%;
        }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-menu li a {
            padding: 10px 0;
            text-align: center;
        }

        .dropdown-toggle i {
            display: inline-block;
            transition: transform 0.3s;
        }

        .dropdown.active .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-item {
            margin: var(--spacing-md) 0;
        }

        .hamburger {
            display: flex !important;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-container,
        .about-grid,
        .contact-grid {
            grid-template-columns: 1fr;
            gap: var(--spacing-lg);
        }

        .stats-container {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Modal Touch Action (Fix for Swipe) */
        .media-modal {
            touch-action: none;
        }

        /* Hamburger Animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .hero-features {
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .services-grid,
        .packages-grid,
        .addons-grid,
        .faq-grid,
        .showcase-grid,
        #videoGrid,
        #graphicGrid {
            grid-template-columns: 1fr;
        }

        /* Fix Grid Spacing */
        .showcase-grid {
            gap: var(--spacing-md);
        }

        .stats-container {
            grid-template-columns: 1fr;
        }

        .timeline::before {
            left: 10px;
        }

        .timeline-item {
            padding-left: 40px;
        }

        .timeline-dot {
            left: 2px;
        }

        .skills-grid {
            grid-template-columns: 1fr;
        }

        .page-title {
            font-size: 2rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        #videoGrid,
        #graphicGrid {
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        #videoGrid.limited,
        #graphicGrid.limited {
            max-height: 800px;
            /* Increased for mobile single column */
            overflow: hidden;
        }

        #videoGrid.expanded,
        #graphicGrid.expanded {
            max-height: none;
            overflow: visible;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 var(--spacing-sm);
        }

        .hero-title {
            font-size: 1.75rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .cta-button {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
            width: 100%;
            /* Full width button on small mobile */
            text-align: center;
        }

        .package-card {
            padding: var(--spacing-md);
        }

        .price-amount {
            font-size: 2.5rem;
        }
    }
}

.nav-mobile-header {
    display: none;
}

/* =========================================
   EMERGENCY MOBILE NAV FIX
   ========================================= */
@media (max-width: 1024px) {

    /* 1. Force Hamburger Visible */
    .hamburger {
        display: flex !important;
    }

    /* 2. Transform Desktop Menu into Mobile Drawer (Slide-in from Left) */
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        /* Start hidden to the left */
        top: 0 !important;
        flex-direction: column !important;
        background-color: #ffffff !important;
        width: 80% !important;
        /* Cover 80% of width for a side-drawer look */
        height: 100vh !important;
        /* Full height back for side slide-in */
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
        padding: 80px 0 30px !important;
        /* Padding for top to clear hamburger area if needed */
        display: flex !important;
        z-index: 10001 !important;
        gap: 0 !important;
        text-align: center !important;
        transition: 0.4s ease-in-out !important;
        opacity: 1 !important;
        /* Keep opacity 1 for clean slide */
        visibility: visible !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        left: 0 !important;
        /* Slide in to the screen */
    }

    /* 3. Hamburger into 'X' Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }

    /* 4. Dropdown inside mobile (Centered) */
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        float: none !important;
        display: none;
        width: 100% !important;
        background-color: #f9f9f9 !important;
        text-align: center !important;
        /* Center the container */
        padding: 10px 0 !important;
    }

    .dropdown-menu li a {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .dropdown-menu.active {
        display: block !important;
    }

    /* 4. Ensure Links don't overlap */
    .nav-item {
        margin: 0 !important;
        width: 100% !important;
    }

    .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 15px 0 !important;
        text-align: center !important;
    }

    /* 5. Hide Modal Arrows on Mobile (Swipe Only) */
    .modal-nav {
        display: none !important;
    }

    /* 6. Emergency Home Layout Fix */
    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .hero-content {
        order: 2 !important;
        /* Text below video */
    }

    .hero-video {
        order: 1 !important;
        /* Video on top */
        width: 100% !important;
    }

    /* 7. Emergency About & Contact Layout Fix */
    .about-grid,
    .contact-grid,
    .contact-info-items {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .about-image {
        order: -1 !important;
        /* Image on top of text for About section */
    }

    .contact-info-item {
        padding: 20px !important;
        gap: 10px !important;
        /* Tighter mobile gap */
    }

    .info-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.1rem !important;
    }
}