/* ==========================================================================
   Marine Masters Stylesheet
   Designed with premium dark maritime aesthetics & responsive components.
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --bg-dark: #080c14;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-card-hover: rgba(22, 32, 51, 0.85);
    
    --primary: #e5a93b;         /* Brass Gold */
    --primary-glow: rgba(229, 169, 59, 0.4);
    --primary-dark: #b88024;
    
    --accent: #00d2ff;          /* Hydraulic Cyan */
    --accent-glow: rgba(0, 210, 255, 0.3);
    
    --success: #10b981;         /* WhatsApp Green */
    --success-glow: rgba(16, 185, 129, 0.4);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 210, 255, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 15px var(--accent-glow);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6.25rem 0;
}

.dark-bg {
    background-color: #05080d;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

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

/* Section Header Styles */
.section-header {
    margin-bottom: 3.75rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: clamp(1.85rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.section-underline.left {
    margin-left: 0;
    margin-right: auto;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, #fff 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.accent-text {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.875rem;
    border-radius: 0.375rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

.whatsapp-btn {
    background-color: var(--success);
    color: #ffffff;
}

.whatsapp-btn:hover {
    background-color: #15803d;
    box-shadow: 0 0 20px var(--success-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(8, 12, 20, 0.92);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    color: #000000;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    font-family: var(--font-heading);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.08);
}

.lang-btn i {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.lang-btn:hover i {
    color: var(--accent);
}

.lang-btn .arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background-color: rgba(8, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.35rem;
    min-width: 120px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 1010;
    list-style: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-dropdown.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.lang-option {
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-option:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.06);
}

.lang-option.active {
    color: var(--primary);
    background-color: rgba(229, 169, 59, 0.1);
}

.call-btn-header {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.1rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    background-image: linear-gradient(to right, rgba(8, 12, 20, 0.98) 35%, rgba(8, 12, 20, 0.55) 75%), url('photos/WhatsApp%20Image%202026-07-11%20at%2012.04.11.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 20%, rgba(229, 169, 59, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 680px;
}

.badge-glowing {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: dotPulse 2s infinite;
}

.hero-content h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats-quick {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-quick-item {
    display: flex;
    flex-direction: column;
}

.stat-quick-item .stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-stars {
    color: var(--primary);
    font-size: 0.75rem;
    margin: 0.25rem 0;
}

.stat-quick-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: var(--border-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 5;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

.services-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.tab-btn i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
    transform: translateY(-2px);
}

.tab-btn:hover i {
    transform: rotate(15deg);
    color: var(--accent);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(2, 136, 209, 0.4);
}

.tab-btn.active i {
    color: #ffffff;
}

.services-panels {
    position: relative;
    width: 100%;
}

.services-panel {
    display: none;
}

.services-panel.active {
    display: block;
    animation: fadeInSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 12, 20, 0.9) 10%, rgba(8, 12, 20, 0.3) 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 600;
}

.gallery-info h3 {
    font-size: 1.125rem;
    margin-top: 0.25rem;
    color: #ffffff;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

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

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

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

.about-image {
    position: relative;
    border-radius: 0.5rem;
}

.about-img-wrapper {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.about-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #000000;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg), 0 0 15px rgba(229, 169, 59, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    max-width: 150px;
}

.experience-card .exp-years {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.experience-card .exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h2 {
    font-size: clamp(1.85rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
}

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

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.about-stat-card:hover {
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
}

.about-stat-card .stat-icon {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.about-stat-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.about-stat-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================================================
   Testimonials / Reviews
   ========================================================================== */
.reviews-summary-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem 2.5rem;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 3rem auto;
    backdrop-filter: blur(8px);
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.google-logo i {
    color: #ea4335; /* Google Red */
}

.rating-visual {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-visual .rating-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.rating-visual .stars {
    color: var(--primary);
    display: flex;
    gap: 0.2rem;
    font-size: 1rem;
}

.rating-visual .rating-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1f2937 100%);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-control-btn {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.carousel-control-btn:hover {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-method-item {
    display: flex;
    gap: 1.25rem;
}

.method-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(0, 210, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.contact-method-item:hover .method-icon {
    background-color: var(--primary);
    color: #000000;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(229, 169, 59, 0.2);
}

.method-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-text p {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.method-text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.email-row {
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.email-row a {
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.email-row a:hover {
    color: var(--accent);
}

.email-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.map-link {
    font-size: 0.85rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.map-link:hover {
    color: var(--primary);
}

/* Form Styling */
.contact-form-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(8px);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.875rem 1rem;
    border-radius: 0.375rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: #04060a;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 3rem 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.designer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* ==========================================================================
   Floating Widgets & Animations
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #25d366; /* WhatsApp official brand green */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp-widget:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 1rem);
    background-color: #1f2937;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.floating-whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Scroll reveal initial states (only active when JS is running) */
.js-enabled .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for staggered entries */
.js-enabled .scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.js-enabled .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.js-enabled .scroll-reveal:nth-child(4) { transition-delay: 0.45s; }

/* Animations Keyframes */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(18px);
    }
}


/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

/* Tablet and Smaller Desktops */

@media (max-width: 1024px) {
    .section-padding {
        padding: 5rem 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .experience-card {
        bottom: -1rem;
        right: -1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-header {
        padding: 0.25rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 4.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 4.5rem);
        background-color: rgba(8, 12, 20, 0.96);
        backdrop-filter: blur(12px);
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 2.5rem;
        padding-bottom: 5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .call-btn-header {
        display: none !important; /* Hide call button in small header, relies on hero or mobile menu actions */
    }
    
    .hero-section {
        background-image: linear-gradient(to top, rgba(8, 12, 20, 1) 25%, rgba(8, 12, 20, 0.65) 100%), url('photos/WhatsApp%20Image%202026-07-11%20at%2012.04.11.jpeg');
        padding-top: 6rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats-quick {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    /* Menu Open Transforms */
    .menu-open #menuToggle .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .menu-open #menuToggle .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-open #menuToggle .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .services-tabs {
        justify-content: flex-start;
        padding: 0.5rem 1rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .floating-whatsapp-widget {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.75rem;
    }

    /* Additional Mobile Optimizations */
    .reviews-summary-badge {
        border-radius: 1rem;
        padding: 1.25rem 2rem;
        width: 100%;
        max-width: 320px;
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-carousel {
        min-height: 320px;
    }
}

/* Extra Compact Devices */
@media (max-width: 576px) {
    .services-grid, 
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 1.5rem auto 0 auto;
        max-width: 100%;
        width: 100%;
    }
}
