/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #ffc107;
    --text-dark: #212121;
    --text-light: #757575;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(26, 35, 126, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: -40px;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 45px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
}

.logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d2d2d;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc107;
    padding-left: 25px;
}

/* Page Header */
.page-header {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?w=1600');
    background-size: cover;
    background-position: center;
    margin-top: 90px;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(13, 71, 161, 0.85) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

/* About Page Specific */
.about-page {
    padding: 0;
    background: #b8bcc0;
    overflow: hidden;
}

.about-page .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('asset-gambar/gambar-security.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    overflow: hidden;
    margin-bottom: 0;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Security Roll Call Section */
.roll-call-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    text-align: center;
}

.roll-call-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.roll-call-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.roll-call-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.roll-call-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .roll-call-section .section-title {
        font-size: 2rem;
    }
    
    .roll-call-image {
        margin: 0 15px;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #1a1a1a;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.services-grid-section .services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-grid-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 60px;
}

.services-grid-section .services-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-grid-section .services-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 0;
}

.services-grid-section .service-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
}

.services-grid-section .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.services-grid-section .service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-grid-section .service-item:hover img {
    transform: scale(1.1);
}

.services-grid-section .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
}

.services-grid-section .service-overlay h3 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    line-height: 1.3;
}

.services-grid-section .service-overlay .see-more {
    display: none;
}

.services-grid-section .service-item .see-more-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.services-grid-section .service-item .see-more-center i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.services-grid-section .service-item:hover .see-more-center {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.services-grid-section .service-item:hover .see-more-center i {
    transform: translateX(5px);
}

/* Responsive for Services Grid */
@media (max-width: 1024px) {
    .services-grid-section .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-section .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid-section .services-title {
        font-size: 2.2rem;
    }
    
    .services-grid-section .services-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .services-grid-section .services-grid-new {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-grid-section .services-title {
        font-size: 1.8rem;
    }
}

/* Services Detail Section - Timeline Design */
.services-detail {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(100, 100, 100, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 40%, rgba(80, 80, 80, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 60%, rgba(70, 70, 70, 0.3) 0%, transparent 35%),
        radial-gradient(ellipse at 80% 80%, rgba(90, 90, 90, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.services-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.service-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.service-detail-item.left {
    flex-direction: row;
}

.service-detail-item.right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #c0392b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 5px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-detail-content {
    flex: 1;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    padding: 25px 30px;
    border-radius: 15px;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-detail-item.left .service-detail-content {
    margin-left: 30px;
    border-left: 4px solid #8b0000;
}

.service-detail-item.right .service-detail-content {
    margin-right: 30px;
    border-right: 4px solid #8b0000;
}

.service-detail-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.service-detail-item.left .service-detail-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent #c0392b transparent transparent;
}

.service-detail-item.right .service-detail-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #c0392b;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 15px;
    color: white;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-content ul li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.service-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Timeline connector line */
.service-detail-item::after {
    content: '';
    position: absolute;
    left: 75px;
    bottom: -50px;
    width: 3px;
    height: 50px;
    background: #c0392b;
}

.service-detail-item:last-child::after {
    display: none;
}

.service-detail-item.right::after {
    left: auto;
    right: 75px;
}

@media (max-width: 768px) {
    .service-detail-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .service-detail-image {
        margin-bottom: 20px;
    }
    
    .service-detail-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 4px solid #8b0000;
    }
    
    .service-detail-content::before {
        display: none;
    }
    
    .service-detail-item::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    
    .service-detail-content ul li {
        text-align: left;
    }
}

/* Services Section - Timeline Design */
.services-timeline {
    padding: 80px 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(100, 100, 100, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 40%, rgba(80, 80, 80, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 20% 60%, rgba(70, 70, 70, 0.3) 0%, transparent 35%),
        radial-gradient(ellipse at 80% 80%, rgba(90, 90, 90, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.services-timeline .services-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    display: inline-block;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    color: white;
    padding: 20px 60px;
    font-size: 2.5rem;
    font-style: italic;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.service-row.right {
    flex-direction: row;
}

.service-row.left {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #c0392b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 5px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-line {
    width: 50px;
    height: 3px;
    background: #c0392b;
    position: relative;
}

.service-row.right .service-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: -40px;
    width: 3px;
    height: 120px;
    background: #c0392b;
}

.service-row.left .service-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: -40px;
    width: 3px;
    height: 120px;
    background: #c0392b;
}

.service-content {
    flex: 1;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-content h3 {
    color: white;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content ul li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.service-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Responsive for Services Timeline */
@media (max-width: 768px) {
    .service-row,
    .service-row.right,
    .service-row.left {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        margin-bottom: 20px;
    }
    
    .service-line {
        display: none;
    }
    
    .service-content {
        width: 100%;
    }
    
    .services-header h2 {
        font-size: 2rem;
        padding: 15px 40px;
    }
}

/* Old Services styles kept for compatibility */
.services-new {
    padding: 80px 0;
    background: #1a1a1a;
}

.services-new .services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-title {
    text-align: center;
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 50px;
    font-style: italic;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.service-overlay h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Responsive for Services */
@media (max-width: 768px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* Service Detail Page */
.service-hero {
    position: relative;
    padding: 150px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.service-hero-new {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-hero-text {
    max-width: 600px;
}

.service-hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .service-hero-text {
        max-width: 100%;
    }

    .service-hero-text h1 {
        font-size: 2.5rem;
    }

    .service-hero-actions {
        justify-content: center;
    }

    .service-hero-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .service-hero-new {
        padding: 100px 0 60px;
    }

    .service-hero-text h1 {
        font-size: 2rem;
    }

    .service-hero-image img {
        height: 280px;
    }
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.65));
}

.service-hero-content {
    position: relative;
    max-width: 900px;
}

.service-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.service-breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.service-overview {
    padding: 90px 0 70px;
    background: #f7f7f7;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #111;
}

.service-description p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.service-lists {
    display: grid;
    gap: 25px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: #222;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: #555;
    line-height: 1.6;
}

.service-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

/* Service Gallery */
.service-gallery {
    padding: 80px 0;
    background: #f0f0f0;
}

.service-gallery h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 45px;
    color: #111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 350px;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10001;
    user-select: none;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.2);
    color: #ffc107;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1rem;
    z-index: 10001;
}

.gallery-item {
    cursor: pointer;
}

.service-related {
    padding: 80px 0;
    background: #101010;
}

.service-related h2 {
    color: #fff;
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 45px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    display: block;
    background: #181818;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.related-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.related-card-content {
    padding: 24px;
}

.related-card-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.related-card-content p {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.related-link {
    font-weight: 600;
    color: #4dabff;
}

.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b2a4a, #021526);
    color: #fff;
}

.service-cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.service-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.service-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-not-found {
    padding: 100px 0;
    text-align: center;
}

.service-not-found h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-not-found p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 90px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero p {
        font-size: 1.05rem;
    }

    .service-card {
        padding: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.9rem;
    }

    .service-hero-actions {
        flex-direction: column;
    }
}

/* Old Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section - New Design */
.about {
    padding: 0;
    background: #b8bcc0;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.about-content-new {
    background: #b8bcc0;
    padding: 60px;
    display: flex;
    align-items: center;
}

.about-text-box {
    max-width: 600px;
}

.about-title {
    font-size: 1.5rem;
    color: #c4a000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-heading {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: bold;
}

.about-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-services-list {
    list-style: disc;
    padding-left: 25px;
    color: var(--text-dark);
}

.about-services-list li {
    padding: 0.4rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.about-image-new {
    position: relative;
    overflow: hidden;
}

.about-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 200px;
    height: 100%;
    background: #b8bcc0;
    transform: skewX(-15deg);
    z-index: 2;
}

.about-image-new::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 50%;
    background: #8b8b8b;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 1;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 50%, #3d3d3d 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(100, 100, 100, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(80, 80, 80, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(60, 60, 60, 0.3) 0%, transparent 50%);
}

.vm-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vm-card {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.vm-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #c0392b;
    margin-left: -15px;
}

.vm-card h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.vm-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Responsive for Vision Mission */
@media (max-width: 768px) {
    .vm-card {
        padding: 30px;
    }
    
    .vm-card h2 {
        font-size: 2rem;
    }
    
    .vm-card::before {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-section .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stats-section .stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stats-section .stat:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stats-section .stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-section .stat p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Chairman Biography Section */
.chairman-bio {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.chairman-bio .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.bio-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.bio-image {
    flex: 0 0 300px;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bio-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.bio-image h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bio-image .bio-title {
    color: #c0392b;
    font-weight: 600;
    font-size: 1rem;
}

.bio-text {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bio-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

.bio-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 5px;
}

.bio-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bio-text ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.bio-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .bio-content {
        flex-direction: column;
    }
    
    .bio-image {
        flex: none;
        width: 100%;
    }
    
    .bio-text {
        padding: 25px;
    }
    
    .chairman-bio .section-title {
        font-size: 2rem;
    }
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}

.leadership-team .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
}

.leaders-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.leader-info {
    padding: 25px;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.leader-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
}

.leader-info .leader-title {
    color: #ffc107;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .leaders-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .leader-card {
        width: 100%;
        max-width: 350px;
    }
    
    .leadership-team .section-title {
        font-size: 2rem;
    }
}

/* Organisation Chart Section */
.org-chart {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 50%, #3d3d3d 100%);
    position: relative;
    overflow: hidden;
}

.org-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(100, 100, 100, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(80, 80, 80, 0.3) 0%, transparent 50%);
}

.org-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.org-title-box,
.org-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.org-title-box h2,
.org-section-title h2 {
    display: inline-block;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: white;
    padding: 15px 50px;
    font-size: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.org-section-title {
    margin-top: 50px;
}

.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.org-card {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid #c0392b;
    transition: all 0.3s ease;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.org-card.chairman {
    border-color: #c0392b;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.org-card.gm {
    min-width: 280px;
}

.org-card h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.org-card p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.org-leadership .org-card {
    background: linear-gradient(135deg, #c0392b, #a93226);
    border-color: #922b21;
}

.org-leadership .org-card h3 {
    color: white;
}

.org-leadership .org-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive for Org Chart */
@media (max-width: 768px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-card {
        width: 90%;
        max-width: 300px;
    }
    
    .org-title-box h2,
    .org-section-title h2 {
        font-size: 1.5rem;
        padding: 12px 30px;
    }
}

/* Old about styles kept for compatibility */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.about-feature span {
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s;
}

.why-item:hover::before {
    left: 100%;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive for Why Choose Us */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-item {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Customer Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials .section-title {
    color: var(--primary-color);
}

.testimonials .section-subtitle {
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content .quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Our Clients Marquee Section */
.clients-section {
    padding: 60px 0 40px;
    background: var(--white);
    overflow: hidden;
}

.clients-section .section-title {
    color: var(--primary-color);
}

.clients-section .section-subtitle {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.clients-track {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    flex-shrink: 0;
    padding-right: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
    
    .clients-marquee {
        flex-wrap: wrap;
        justify-content: center;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

.client-logo {
    flex-shrink: 0;
    width: 245px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive for clients marquee */
@media (max-width: 768px) {
    .clients-track {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .client-logo {
        width: 160px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .client-logo {
        width: 140px;
        height: 100px;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff9800 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

.btn-cta i,
.btn-whatsapp i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0.2rem 0;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Google Map Container */
.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

/* Branches Section */
.branches-section {
    margin-top: 3rem;
}

.branches-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.branches-title i {
    margin-right: 10px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.branch-card {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.branch-card.hq {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.branch-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.branch-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.branch-card.hq h4 {
    color: #b45309;
}

.branch-address,
.branch-phone {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.branch-address i,
.branch-phone i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.branch-card.hq .branch-address i,
.branch-card.hq .branch-phone i {
    color: #b45309;
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: #aaa;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 10px 0;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
    }

    /* Mobile Dropdown */
    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f5f5f5;
        box-shadow: none;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        text-align: center;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu li a {
        color: var(--text-dark);
        padding: 10px 20px;
        text-align: center;
    }

    .dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content-new {
        padding: 40px 20px;
    }

    .about-image-new {
        min-height: 400px;
    }

    .about-image-new::before {
        display: none;
    }

    /* Services Detail Mobile */
    .service-detail-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 30px;
    }

    .service-detail-image {
        margin-bottom: 20px;
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
    }

    .service-detail-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 4px solid #8b0000;
        padding: 20px;
    }

    .service-detail-content::before {
        display: none;
    }

    .service-detail-content h3 {
        font-size: 1.2rem;
    }

    .service-detail-content ul li {
        font-size: 0.85rem;
        text-align: left;
    }

    .service-detail-item::after {
        display: none;
    }

    .stats-section .about-stats {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta,
    .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }

    /* Logo Mobile */
    .logo {
        margin-left: 10px;
    }

    .logo-img {
        height: 50px;
    }

    .logo span {
        font-size: 1.1rem;
    }

    /* Roll Call Section Mobile */
    .roll-call-section {
        padding: 50px 0;
    }

    .roll-call-section .section-title {
        font-size: 1.8rem;
    }

    .roll-call-image {
        margin: 0 15px;
        border-radius: 10px;
    }

    /* Vision Mission Mobile */
    .vm-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .vm-card {
        padding: 25px 20px;
    }

    .vm-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .feature-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Licenses Section */
.licenses-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.licenses-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.licenses-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.license-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.license-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.license-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .licenses-grid {
        grid-template-columns: 1fr;
    }
    
    .licenses-section .section-title {
        font-size: 2rem;
    }
}
