/* ==========================================
   SINGH SECURITY SERVICES – CORE STYLES
   ========================================== */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS Custom Properties === */
:root {
    --primary: #0B1F3A;
    --primary-light: #1a3660;
    --primary-dark: #060f1d;
    --secondary: #C8A96A;
    --secondary-light: #d9be8a;
    --secondary-dark: #a8893a;
    --bg: #F7F9FC;
    --bg-dark: #0d1b2e;
    --text: #1A1A1A;
    --text-light: #555;
    --text-muted: #888;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(11, 31, 58, 0.10);
    --shadow-md: 0 8px 40px rgba(11, 31, 58, 0.15);
    --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.20);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
    --gradient-cta: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Section Heading === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(200, 169, 106, 0.12);
    border: 1px solid rgba(200, 169, 106, 0.3);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    margin-bottom: 18px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.heading-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 4px;
    margin: 18px auto 0;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 31, 58, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-text {
    line-height: 1.2;
}

.nav-logo-text .brand {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
    display: block;
}

.nav-logo-text .tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--primary) !important;
    font-weight: 700 !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 106, 0.5);
}

.nav-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    filter: brightness(0.35);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 31, 58, 0.92) 0%,
            rgba(11, 31, 58, 0.70) 50%,
            rgba(200, 169, 106, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 169, 106, 0.15);
    border: 1px solid rgba(200, 169, 106, 0.4);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s 0.1s ease both;
}

.hero h1 span {
    color: var(--secondary);
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-iso {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 18px;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s 0.3s ease both;
}

.hero-iso svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
    flex-shrink: 0;
}

.hero-iso span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hero-iso strong {
    color: var(--secondary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.9s 0.4s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(200, 169, 106, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.55);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-dark {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(11, 31, 58, 0.35);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.45);
    color: var(--white);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--secondary);
    border-radius: 3px;
    animation: scroll-down 1.5s ease infinite;
}

/* ==========================================
   STATS COUNTER SECTION
   ========================================== */
.stats-section {
    background: var(--primary);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(200, 169, 106, 0.15);
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--secondary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */
.about-preview {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 160px;
}

.about-image-badge .badge-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    display: block;
}

.about-image-badge .badge-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-top: 6px;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    opacity: 0.12;
    z-index: -1;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 14px;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 30px 0 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.about-feature-item svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    flex-shrink: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 24px 28px 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.08) 0%, rgba(200, 169, 106, 0.12) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 106, 0.2);
}

.service-card:hover .service-icon {
    background: var(--gradient);
    border-color: transparent;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 18px;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(6px);
    transition: var(--transition);
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/why-bg.jpg') center/cover no-repeat;
    opacity: 0.04;
}

.why-section .section-header h2 {
    color: var(--white);
}

.why-section .section-header p {
    color: rgba(255, 255, 255, 0.65);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 169, 106, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-icon {
    width: 62px;
    height: 62px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(200, 169, 106, 0.3);
}

.why-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* ==========================================
   CLIENTS CAROUSEL
   ========================================== */
.clients-section {
    padding: 80px 0;
    background: var(--white);
}

.clients-section .section-header {
    margin-bottom: 48px;
}

.clients-carousel-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 120px;
    transition: var(--transition);
    filter: grayscale(1) opacity(0.6);
}

.client-logo-item:hover {
    filter: grayscale(0) opacity(1);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.client-logo-item img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

.client-logo-item span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    letter-spacing: 0.03em;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 169, 106, 0.3);
}

.testimonial-quote {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--secondary);
    font-family: Georgia, serif;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.author-info .name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    display: block;
}

.author-info .role {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    padding: 90px 0;
    background: var(--gradient-cta);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 18px;
}

.cta-inner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    color: var(--white);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #080f1c;
    color: var(--white);
}

.footer-top {
    padding: 80px 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
    gap: 48px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    display: block;
}

.footer-brand-tag {
    font-size: 0.62rem;
    color: var(--secondary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
}

.social-link:hover svg {
    fill: var(--primary);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-link svg {
    width: 12px;
    height: 12px;
    fill: var(--secondary);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(200, 169, 106, 0.12);
    border: 1px solid rgba(200, 169, 106, 0.25);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

.contact-value a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.contact-value a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.back-top-btn {
    background: var(--gradient);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.back-top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

.back-top-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
    background: var(--gradient);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 24px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb .sep {
    color: var(--secondary);
}

.breadcrumb .current {
    color: var(--secondary);
}

/* ==========================================
   ABOUT PAGE – TIMELINE
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    padding-left: 48px;
    border-left: 2px solid rgba(200, 169, 106, 0.3);
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -57px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--secondary);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.timeline-item h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-item p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
}

.mission-vision {
    padding: 80px 0;
    background: var(--bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.2);
}

.mv-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.mv-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-page {
    padding: 90px 0;
    background: var(--bg);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-page-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-top {
    background: var(--gradient);
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-card-top::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.service-page-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-page-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--secondary);
}

.service-card-top h3 {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
}

.service-card-body {
    padding: 28px 32px;
}

.service-card-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text);
    font-weight: 500;
}

.service-feature svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    flex-shrink: 0;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section {
    padding: 90px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(200, 169, 106, 0.1);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.contact-info-card>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

.cd-text .cd-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.cd-text .cd-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    display: block;
}

.cd-text .cd-value a {
    color: rgba(255, 255, 255, 0.9);
}

.cd-text .cd-value a:hover {
    color: var(--secondary);
}

.business-hours {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.business-hours h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.87rem;
}

.hours-row .day {
    color: rgba(255, 255, 255, 0.6);
}

.hours-row .time {
    color: var(--secondary);
    font-weight: 600;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-map-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    height: 100%;
    min-height: 550px;
}

.contact-map-card .map-wrap {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
    outline: none;
    resize: none;
}

.form-control:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
}

.form-control::placeholder {
    color: #bbb;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23888' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.map-section {
    padding: 0 0 90px;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

.contact-map-card .map-wrap iframe {
    height: 100%;
    min-height: 550px;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered delay */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

/* ==========================================
   QUICK CONTACT CARDS
   ========================================== */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 40px auto 0;
    max-width: 1100px;
}

.quick-contact-grid>a {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================
   CERTIFICATES SECTION
   ========================================== */
.certificates-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-item-wrap {
    perspective: 1000px;
}

.cert-card {
    position: relative;
    background: #fff;
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 340px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    overflow: hidden;
    user-select: none;
    -webkit-user-drag: none;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.cert-img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f8f9fa;
    pointer-events: none;
}

.cert-canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    /* Still transparent but exists */
    z-index: 10;
    pointer-events: auto;
    cursor: default;
}