:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #2980b9;
    --accent-dark: #1f618d;
    --accent-light: #3498db;
    --dark: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 12px;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    display: flex;
    gap: 10px;
}

.loader .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent) !important;
    animation: bounce 1.4s infinite ease-in-out both;
}

.loader .circle:nth-child(1) { animation-delay: -0.32s; }
.loader .circle:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar-scrolled {
    background: rgba(26, 26, 46, 0.98) !important;
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
}

#mainNav .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

.brand-icon {
    color: var(--accent) !important;
    margin-right: 8px;
    font-size: 1.8rem;
}

.brand-text {
    color: var(--white) !important;
}

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

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent) !important;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(26, 26, 46, 0.98) !important;
    border: 1px solid rgba(41, 128, 185, 0.3) !important;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 250px;
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background: rgba(41, 128, 185, 0.2) !important;
    color: var(--white) !important;
    padding-left: 25px;
}

.dropdown-toggle::after {
    border-top-color: rgba(255, 255, 255, 0.7);
}

.navbar-dark .navbar-nav .nav-link.dropdown-toggle:hover::after {
    border-top-color: var(--accent) !important;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-accent {
    background: var(--accent) !important;
    color: var(--white);
    border: 2px solid var(--accent) !important;
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

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

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e94560" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom / cover no-repeat;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-stats {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent) !important;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounceDown 2s infinite;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Page Header */
.page-header {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e94560" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom / cover no-repeat;
}

.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--accent-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-dark-custom {
    background: var(--dark);
}

.section-tag {
    display: inline-block;
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--accent) !important;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.bg-dark-custom .section-title {
    color: var(--white);
}

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

.bg-dark-custom .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 69, 96, 0.1);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.service-link:hover {
    color: var(--accent-dark);
    gap: 12px;
}

/* Principles */
.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.principle-item:hover {
    background: rgba(233, 69, 96, 0.05);
}

.principle-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent) !important;
    opacity: 0.3;
    font-family: var(--font-display);
}

.principle-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.principle-item p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Image Shapes */
.img-shape-1, .img-shape-2 {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.img-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(233, 69, 96, 0.1);
    top: -50px;
    right: -50px;
}

.img-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(233, 69, 96, 0.05);
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

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

/* About Page */
.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--border-radius);
    transform: rotate(-3deg);
    opacity: 0.1;
}

.about-stats-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-stats-card h3 {
    font-size: 2.5rem;
    color: var(--accent) !important;
    font-weight: 800;
}

.about-stats-card p {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.value-card p {
    color: var(--gray);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: var(--accent) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
}

.timeline-content h4 {
    color: var(--accent) !important;
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Process Cards */
.process-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.process-card:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-10px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent) !important;
    opacity: 0.3;
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.process-card h5 {
    margin-bottom: 15px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Detail (Services Page) */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(233, 69, 96, 0); }
}

.service-detail h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-detail .lead {
    font-size: 1.1rem;
    color: var(--gray);
}

.service-detail-content {
    background: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li i {
    color: var(--accent) !important;
    font-size: 1.1rem;
}

/* Service List Card (for individual service pages) */
.service-list-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(41, 128, 185, 0.2);
}

.service-list-card i {
    color: var(--accent) !important;
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.service-list-card h5 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-list-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.service-outcome {
    background: rgba(233, 69, 96, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent) !important;
}

.service-outcome strong {
    color: var(--accent) !important;
}

.service-notice {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid #ffc107;
    color: #856404;
}

.service-notice i {
    color: #ffc107;
    margin-right: 8px;
}

/* Integrated Solutions Cards */
.integrated-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    height: 100%;
}

.integrated-card:hover {
    background: rgba(233, 69, 96, 0.1);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-10px);
}

.integrated-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--white);
}

.integrated-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.integrated-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--primary);
    margin-bottom: 30px;
}

.form-floating label {
    color: var(--gray);
}

.form-control, .form-select {
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 15px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
}

.contact-info-wrapper {
    background: var(--light);
    padding: 50px;
    border-radius: var(--border-radius);
}

.contact-info-wrapper h3 {
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-info-item h5 {
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--gray);
    margin: 0;
}

.contact-social h5 {
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-social .social-links a {
    background: var(--primary);
    color: var(--white);
}

.compliance-notice {
    background: rgba(233, 69, 96, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.compliance-notice h6 {
    color: var(--accent) !important;
    margin-bottom: 8px;
}

.compliance-notice p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4, .footer h5 {
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent) !important;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

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

.footer-contact i {
    color: var(--accent) !important;
    width: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent) !important;
    color: var(--white);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .service-detail-content {
        padding: 25px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent) !important;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* ===== PHOTO IMAGE STYLES ===== */

/* Hero floating image card */
.hero-img-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    transform: perspective(1000px) rotateY(-8deg);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-img-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}
.hero-img-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26,26,46,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(41,128,185,0.4);
    border-radius: 12px;
    padding: 12px 18px;
    color: white;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Service detail image wrapper (services.html) */
.service-detail-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}
.service-detail-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.service-detail:hover .service-detail-img-wrap img {
    transform: scale(1.05);
}
.service-detail-img-icon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(41,128,185,0.5);
}

/* Service hero image (service subpages) */
.service-hero-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-hero-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}
.service-hero-img-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(41,128,185,0.5);
    animation: pulse 2s infinite;
}

/* About page photo */
.about-main-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    display: block;
}

/* Philosophy section image */
.philosophy-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.philosophy-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.philosophy-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(15,15,26,0.95));
}

@media (max-width: 991.98px) {
    .hero-img-card img { height: 350px; }
    .service-hero-img-wrap img { height: 280px; }
    .philosophy-img-wrap img { height: 320px; }
}
