/* ============================================
   DD360Media - Main Stylesheet
   Merged from style guide, index page, and contact page
   Based on spintadigital.com design
   ============================================ */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inter:400,500,600,700,800|Space+Grotesk:400,500,600,700");

/* CSS Reset & Base Styles */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark: #141820;
    --color-gray: #7A7A7A;
    --color-light-gray: #f5f5f5;
    --color-accent: #E07800;
    --color-accent-orange: #FF9214;
    --color-border: #eaeaea;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Space Grotesk', 'Georgia', serif;
    
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-white i {
    transition: transform 0.3s ease;
}

.btn-white:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-text {
    padding: 0;
    color: var(--color-accent);
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
    color: var(--color-dark);
}

.btn-text i {
    transition: var(--transition-smooth);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-title .accent-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-accent);
}

.section-title .accent-mark {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 150px;
    padding: 3px 18px;
    display: inline-block;
    font-size: inherit;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR STYLES - SPINTADIGITAL REPLICA
   ============================================ */

/* Header Wrapper */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all 0.3s ease;
}

/* Scrolled State */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

/* Inner Section with Border Radius (Spinta Style) */
.header-inner {
    background: #fff;
    border-radius: 0 0 40px 40px;
    transition: all 0.3s ease;
    margin: 0 8vw;
}

.site-header.scrolled .header-inner {
    background: transparent;
    border-radius: 0;
    margin: 0;
}

/* Container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 13px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline Effect - Spinta Style */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF9214;
    transition: width 0.3s ease;
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #FF9214;
}

/* Dropdown Menu */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu li a {
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sub-menu li a::after {
    display: none;
}

.sub-menu li a:hover {
    color: #FF9214;
    background: #f8f8f8;
    border-left-color: #FF9214;
    padding-left: 30px;
}

/* Dropdown Arrow */
.menu-item-has-children > a {
    position: relative;
    padding-right: 20px !important;
}

.menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a::before {
    transform: translateY(-50%) rotate(180deg);
}

/* Enquire Button */
.enquire-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #000;
    margin-left: 20px;
}

.enquire-btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: #000;
    border: none;
    border-radius: 30px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-toggle i {
    font-size: 1.3rem;
    color: #fff;
}

.mobile-menu-toggle:hover {
    background: #333;
}

/* Mobile Menu Container */
.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9998;
    padding: 100px 30px 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-menu-container.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.mobile-nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-radius: 0;
}

.mobile-nav-menu .sub-menu.active {
    max-height: 500px;
}

.mobile-nav-menu .sub-menu li a {
    padding: 12px 20px 12px 40px;
    font-size: 0.95rem;
}

.mobile-enquire-btn {
    background: #000;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    border-radius: 30px;
    display: block;
}

.mobile-enquire-btn a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mobile-enquire-btn:hover {
    background: #FF9214;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close i {
    font-size: 1.3rem;
    color: #fff;
}

.mobile-menu-close:hover {
    background: #FF9214;
    transform: rotate(90deg);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Arrow for Mobile */
.dropdown-trigger {
    cursor: pointer;
}

.dropdown-trigger i {
    transition: transform 0.3s ease;
}

.dropdown-trigger.active i {
    transform: rotate(180deg);
}

/* ============================================
   STICKY SOCIAL MEDIA ICONS
   ============================================ */
.sticky-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-social a {
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.sticky-social a:hover {
    background: var(--color-accent);
    transform: scale(1.1) translateX(5px);
    box-shadow: var(--shadow-hover);
}

.sticky-social a:nth-child(1):hover { background: #E4405F; }
.sticky-social a:nth-child(2):hover { background: #0077B5; }
.sticky-social a:nth-child(3):hover { background: #1877F2; }
.sticky-social a:nth-child(4):hover { background: #FF0000; }
.sticky-social a:nth-child(5):hover { background: #25D366; }

/* Brand colors for default state */
.sticky-social a:nth-child(1) { background: #E4405F; }
.sticky-social a:nth-child(2) { background: #0077B5; }
.sticky-social a:nth-child(3) { background: #1877F2; }
.sticky-social a:nth-child(4) { background: #FF0000; }
.sticky-social a:nth-child(5) { background: #25D366; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-highlight-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    background: linear-gradient(120deg, var(--color-dark) 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-accent-mark {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 150px;
    padding: 5px 20px;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    margin: 25px 0 35px;
    color: var(--color-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    background: #e0e0e0;
    object-fit: cover;
}

/* For video specifically */
.hero-video {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.floating-star {
    position: absolute;
    animation: starPulse 1.5s ease-in-out infinite alternate;
}

.star-1 {
    top: -20px;
    left: -30px;
    width: 60px;
}

.star-2 {
    bottom: -20px;
    right: -30px;
    width: 80px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 28px;
    transition: var(--transition-bounce);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--color-accent);
}

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

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--color-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   DETAILED SERVICES
   ============================================ */
.detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 80px 0;
}

.detail-row.reverse {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.detail-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.detail-img {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.detail-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities-section {
    background-color: var(--color-light-gray);
    border-radius: 48px;
    margin: 60px auto;
    max-width: 1400px;
}

.capabilities-wrapper {
    padding: 70px 60px;
    text-align: center;
}

.capabilities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.capabilities-grid span {
    background: var(--color-white);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.capabilities-grid span:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ============================================
   WORK SLIDER
   ============================================ */
.work-slider {
    width: 100%;
    padding: 30px 0 50px;
    position: relative;
}

.work-item {
    text-align: center;
    padding: 25px;
    transition: var(--transition-bounce);
    border-radius: 24px;
    background: var(--color-white);
    margin: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.work-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent);
}

.work-item img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 8px;
    border-radius: 16px;
    margin: 0 auto;
}

.work-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

        /* Swiper Pagination Styling */

        .swiper {
            
        }
        .swiper-pagination {
            position: relative;
            margin-top: 30px;
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: var(--color-gray);
            opacity: 0.5;
            transition: var(--transition-smooth);
        }

        .swiper-pagination-bullet-active {
            background-color: var(--color-accent) !important;
            opacity: 1;
            width: 24px;
            border-radius: 5px;
        }

        /* Swiper Navigation Buttons (Optional - uncomment if needed) */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--color-accent);
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            box-shadow: var(--shadow-sm);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--color-accent);
            color: white;
        }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1f2e 100%);
    color: var(--color-white);
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--color-white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 28px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

.testimonial-quote p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   3D IMAGE GALLERY STYLES
   ============================================ */
.scene {
    display: grid;
    overflow: hidden;
    perspective: 35em;
    margin: 60px 0;
    position: relative;
    mask: linear-gradient(90deg, transparent, #000 20% 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, #000 20% 80%, transparent);
}

.a3d {
    display: grid;
    place-self: center;
    transform-style: preserve-3d;
    animation: rotateGallery 24s linear infinite;
}

@keyframes rotateGallery {
    to {
        rotate: y 1turn;
    }
}

@media (prefers-reduced-motion: reduce) {
    .a3d {
        animation-duration: 48s;
    }
}

.card {
    --w: 18em;
    --ba: 1turn / var(--n);
    grid-area: 1 / 1;
    width: var(--w);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1.5em;
    backface-visibility: hidden;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    border: 3px solid transparent;
    transform: rotateY(calc(var(--i) * var(--ba))) translateZ(calc(-1 * (0.5 * var(--w) + 0.5em) / tan(0.5 * var(--ba))));
}

.card:hover {
    transform: rotateY(calc(var(--i) * var(--ba))) translateZ(calc(-1 * (0.5 * var(--w) + 0.5em) / tan(0.5 * var(--ba)) + 30px));
    border-color: var(--color-accent);
    filter: brightness(1.05);
}

.scene:hover .a3d {
    animation-play-state: paused;
}

.gallery-info {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 60px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
}

.gallery-info p {
    margin-bottom: 0;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.gallery-info i {
    color: var(--color-accent);
    margin-right: 8px;
}

.text-center {
    text-align: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-color: var(--color-dark);
    margin: 60px auto;
    max-width: 1400px;
    border-radius: 48px;
    position: relative;
    overflow: hidden;
    width: calc(100% - 80px);
}

.cta-wrapper {
    padding: 80px 60px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 2;
}

.cta-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Animated SVG Wrapper */
.animated-svg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    min-width: 800px;
    max-width: 1200px;
    animation: rotateContainer 20s linear infinite;
}

@keyframes rotateContainer {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.arc {
    fill: none;
    stroke-width: 1.5px;
    transition: stroke 0.5s ease;
}

.slide-overlay {
    opacity: 0;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

/* Contact Info Cards */
.contact-info-card {
    background: var(--color-white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.contact-info-card:last-child {
    margin-bottom: 0;
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-info-card .icon i {
    font-size: 2rem;
    color: var(--color-white);
}

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

.contact-info-card p {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-info-card .contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 10px;
}

.contact-info-card .contact-value a {
    color: var(--color-dark);
    transition: var(--transition-smooth);
}

.contact-info-card .contact-value a:hover {
    color: var(--color-accent);
}

/* Map Container - Full Width */
.map-fullwidth {
    width: 100%;
    margin: 40px 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-fullwidth iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    margin-bottom: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(224, 120, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 16px 32px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 70px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo span {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 0 8px;
    border-radius: 12px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.contact-info li i {
    width: 20px;
    color: var(--color-accent);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-links a i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--color-dark);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-row,
    .detail-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    
    .detail-text {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Navbar Responsive */
    .desktop-nav {
        display: none;
    }
    
    .enquire-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-container {
        display: block;
    }
    
    .header-inner {
        margin: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .work-item img {
        width: 140px;
        height: 90px;
    }
    
    .work-item {
        padding: 20px;
    }
    
    .card {
        --w: 15em;
    }
    
    .cta-section {
        width: calc(100% - 60px);
    }
    
    .cta-wrapper {
        padding: 60px 40px;
    }
    
    .cta-wrapper h2 {
        font-size: 2.5rem;
    }
    
    .spin {
        min-width: 600px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .map-fullwidth iframe {
        height: 350px;
    }
    
    .sticky-social {
        left: 10px;
    }
    
    .sticky-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        padding: 50px 30px;
    }
    
    .cta-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .capabilities-wrapper {
        padding: 40px 25px;
    }
    
    .capabilities-grid span {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-main-img {
        height: 300px;
    }
    
    .header-inner {
        margin: 0 15px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .work-section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .work-item img {
        width: 120px;
        height: 80px;
    }
    
    .work-item {
        padding: 15px;
    }
    
    .card {
        --w: 12em;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .cta-section {
        width: calc(100% - 40px);
        border-radius: 32px;
    }
    
    .cta-wrapper p {
        font-size: 1rem;
    }
    
    .spin {
        min-width: 400px;
    }
    
    .btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* Contact Page Responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card {
        padding: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .page-header {
        padding: 150px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .map-fullwidth {
        margin: 30px 0;
    }
    
    .map-fullwidth iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-accent-mark {
        padding: 2px 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .detail-img img {
        height: 200px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .work-item img {
        width: 100px;
        height: 70px;
    }
    
    .work-item {
        padding: 12px;
    }
    
    .card {
        --w: 10em;
    }
    
    .scene {
        perspective: 25em;
    }
    
    .spin {
        min-width: 320px;
    }
    
    .cta-wrapper {
        padding: 40px 20px;
    }
    
    .cta-wrapper h2 {
        font-size: 1.5rem;
    }
    
    /* Contact Page Responsive */
    .contact-info-card .icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-info-card .icon i {
        font-size: 1.5rem;
    }
    
    .map-fullwidth iframe {
        height: 250px;
    }
}