/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    --navy: #0B192C;
    --navy-light: #1A2E44;
    --teal: #0D9488;
    --orange: #FF6B00;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748B;
    --border: #E2E8F0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

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

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    margin-bottom: 3rem;
}

.section-heading .subtitle {
    display: block;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.text-center .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.reveal-left .section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-text {
    background: none;
    border: none;
    color: var(--teal);
    padding: 0;
    font-size: 1rem;
}

.btn-text:hover {
    color: var(--navy);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.navbar.scrolled .nav-links a {
    color: var(--navy);
}

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

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.navbar.scrolled .nav-links a {
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a:hover {
    color: var(--teal);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--navy);
    text-shadow: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(11, 25, 44, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.mobile-menu-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
    background: rgba(255,255,255,0.2);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: auto; /* Pushes footer down */
    width: 100%;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 500;
    display: block;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.mobile-nav-links a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.mobile-menu-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 25, 44, 0.9) 0%, rgba(11, 25, 44, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.badge i {
    color: var(--gold);
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    background: var(--teal);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    margin-top: -30px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.trust-item i {
    font-size: 2.5rem;
}

.trust-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--navy);
}

.about-list i {
    color: var(--teal);
    font-size: 1.2rem;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1 {
    width: 70%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-img-2 {
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 10px solid var(--white);
}

.decorative-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 70%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
}

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

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-number,
.service-card:hover .btn-text {
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-bg);
    transition: var(--transition);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

/* ==========================================================================
   Projects Gallery Section
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    color: var(--navy);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: var(--transition);
}

.filter-btn.active::after {
    width: 80%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

/* Masonry approximation */
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 25, 44, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    color: var(--white);
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-img-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-img-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img-wrapper:hover .gallery-overlay i,
.gallery-img-wrapper:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-item.hide {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3001;
}

.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: var(--gold);
}

/* ==========================================================================
   Videos Section
   ========================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    background: #000;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Landscape aspect ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    color: var(--orange);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.play-btn-wrapper:hover .play-btn {
    transform: scale(1.1);
    background: var(--orange);
    color: var(--white);
}

.video-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    z-index: 2;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3001;
}

.video-container {
    width: 90%;
    max-width: 500px; /* Better for portrait videos */
    background: transparent;
    display: flex;
    justify-content: center;
}

.video-container video {
    width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    display: block;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 148, 136, 0.1);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: var(--transition);
}

.why-card:hover .why-number {
    color: var(--gold);
}

.why-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    position: relative;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--white);
    border: 2px solid var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--teal);
    color: var(--white);
    transform: scale(1.1);
}

.step-content h5 {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    background-color: var(--navy);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 25, 44, 0.85);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   Pricing Section (Premium Upgrade)
   ========================================================================== */
.pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg opacity="0.03" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%230B192C" stroke-width="2" fill="none"/></svg>') repeat;
    background-size: 50px 50px;
    z-index: 1;
}

.pricing > .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.pricing-card.premium {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(11, 25, 44, 0.3);
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--teal), transparent);
    z-index: -1;
    border-radius: 26px;
    animation: borderGlow 6s linear infinite;
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #D4AF37, #F6B17A);
    color: var(--navy);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing-card.premium .pricing-header {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.pricing-header h3 {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.pricing-card.premium .pricing-header h3 {
    color: var(--white);
}

.price-value {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pricing-card.premium .price-value {
    color: var(--gold);
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.price-value span {
    font-size: 1.6rem;
    color: var(--text-muted);
    margin-right: 6px;
    align-self: flex-start;
    margin-top: 5px;
}

.price-value span.unit {
    font-size: 1.2rem;
    margin-left: 6px;
    margin-right: 0;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 8px;
}

.pricing-card.premium .price-value span {
    color: rgba(255,255,255,0.8);
}

.price-type {
    margin-top: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
}

.pricing-card.premium .price-type {
    color: rgba(255,255,255,0.8);
}

.pricing-upgrade {
    background: rgba(13, 148, 136, 0.08);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 600;
    border: 1px dashed rgba(13, 148, 136, 0.3);
    transition: var(--transition);
}

.pricing-upgrade:hover {
    background: rgba(13, 148, 136, 0.12);
}

.pricing-upgrade i {
    color: var(--teal);
    margin-right: 10px;
}

.pricing-card.premium .pricing-upgrade {
    background: rgba(212, 175, 55, 0.1);
    color: var(--white);
    border: 1px dashed rgba(212, 175, 55, 0.4);
}

.pricing-card.premium .pricing-upgrade:hover {
    background: rgba(212, 175, 55, 0.15);
}

.pricing-card.premium .pricing-upgrade i {
    color: var(--gold);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1.4rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    line-height: 1.5;
}

.pricing-card.premium .pricing-features li {
    color: rgba(255,255,255,0.95);
}

.pricing-features li i {
    color: var(--teal);
    margin-right: 15px;
    font-size: 1.25rem;
    margin-top: 3px;
}

.pricing-card.premium .pricing-features li i {
    color: var(--gold);
}

.pricing-card .btn {
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-card.premium .btn {
    background: linear-gradient(to right, #D4AF37, #F6B17A);
    border: none;
    color: var(--navy);
    font-weight: 700;
}

.pricing-card.premium .btn:hover {
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 3rem;
}

.contact-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-brand .tagline {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--teal);
    margin-top: 0.25rem;
}

.info-item span {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-item a, .info-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.info-item a:hover {
    color: var(--gold);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.contact-actions .btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.contact-actions .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.contact-form-wrapper {
    padding: 4rem 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--light-bg);
    transition: var(--transition);
    color: var(--text-main);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    width: 100%;
    height: 400px;
    background: var(--gray-200);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #e5e7eb;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand .tagline {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--teal);
}

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

.footer-contact p {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--teal);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.footer-social a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
    position: relative;
}

.fab-whatsapp {
    background-color: #25D366;
    animation: pulse 2s infinite;
}

.fab-call {
    background-color: var(--navy);
}

.fab:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .section-padding { padding: 80px 0; }
    .hero-title { font-size: 3rem; }
    .about-container { gap: 2rem; }
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid, .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .trust-badges {
        position: relative;
        bottom: 0;
        transform: translateY(0);
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 40px 0; }
    .nav-links, .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding-top: 120px; padding-bottom: 40px; }
    .hero-content { text-align: center; margin-top: 0; }
    .hero-title { font-size: 2.2rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1.1rem; margin-top: 1rem; }
    .hero-description { font-size: 1rem; margin: 1.5rem auto; }
    .hero-ctas { flex-direction: column; width: 100%; align-items: center; gap: 1rem; }
    .hero-ctas .btn { width: 100%; max-width: 300px; margin: 0; }
    
    .trust-badges {
        position: relative;
        bottom: 0;
        margin-top: 3rem;
    }
    .trust-grid { grid-template-columns: 1fr; gap: 1rem; }
    .trust-item { padding: 1rem; }
    
    .about-container { grid-template-columns: 1fr; gap: 2rem; }
    .about-content { text-align: left; }
    
    /* Fix About Images on Mobile */
    .about-images { 
        height: auto; 
        order: -1; 
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .decorative-box { display: none; }
    .about-img-1, .about-img-2 { 
        position: relative; 
        width: 100%; 
        height: 250px; 
        top: 0; left: 0; right: 0; bottom: 0;
        border-radius: var(--radius-md); 
        border: none;
    }
    
    .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; gap: 1rem; }
    .gallery-item:nth-child(1), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { 
        grid-row: auto; 
        grid-column: auto; 
    }
    
    .video-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-step::after { display: none; } /* Hide arrow on mobile */
    
    .contact-layout { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .contact-info { padding: 2rem 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand .footer-desc { margin: 0 auto; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-contact p { justify-content: center; }
    
    .map-section { height: 350px; margin-top: 0; }
    .map-section iframe { width: 100% !important; height: 100% !important; }
}

@media (max-width: 480px) {
    .section-heading h2 { font-size: 1.8rem; }
    .hero-title { font-size: 1.8rem; }
    .about-list { grid-template-columns: 1fr; }
    .floating-actions { bottom: 1rem; right: 1rem; }
    .fab { width: 45px; height: 45px; font-size: 1.2rem; }
}
