:root {
    --primary: #0A74DA;
    --primary-dark: #0855A0;
    --secondary: #212529;
    --accent: #25D366; /* WhatsApp Green */
    --accent-hover: #1EBD5A;
    --bg-light: #F8F9FA;
    --text-main: #4A4A4A;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
    --gold: #FFC107;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.text-gold {
    color: var(--gold);
}

.text-sm {
    font-size: 0.875rem;
    color: #6c757d;
}

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

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
}

/* Typography styles */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 15px rgba(10, 116, 218, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(10, 116, 218, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

/* Floating Elements */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background: var(--accent-hover);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 999;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--text-dark);
    font-weight: 500;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.3rem;
    color: var(--secondary);
    transition: var(--transition);
}

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

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

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section Redesigned */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(to right bottom, #ffffff, #f4f7fb);
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(10, 116, 218, 0.2);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(37, 211, 102, 0.15);
    bottom: -150px;
    right: -100px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 116, 218, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(10, 116, 218, 0.7);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(10, 116, 218, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(10, 116, 218, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(10, 116, 218, 0); }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-glow {
    position: relative;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: inherit;
    z-index: -1;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.6;
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-main);
    font-family: var(--font-body);
}

.stat-border {
    width: 2px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 600px;
    z-index: 2;
}

.image-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    z-index: -1;
    opacity: 0.15;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.main-hero-img {
    width: 100%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: var(--shadow-lg);
    animation: morph 8s ease-in-out infinite both alternate;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 4s ease-in-out infinite both alternate;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: -2s;
}

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

.fc-icon {
    width: 40px;
    height: 40px;
    background: rgba(10, 116, 218, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-text strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.fc-text span {
    font-size: 0.85rem;
    color: var(--text-main);
}

/* Animated Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
}

.bg-icon {
    position: absolute;
    color: var(--primary);
    opacity: 0.08;
    animation: float-around ease-in-out infinite alternate;
}

.icon-1 { left: 10%; top: 15%; animation-duration: 25s; font-size: 5rem; }
.icon-2 { left: 85%; top: 20%; animation-duration: 30s; animation-delay: -5s; font-size: 4rem; }
.icon-3 { left: 50%; top: 65%; animation-duration: 35s; font-size: 8rem; opacity: 0.02; animation-delay: -10s; }
.icon-4 { left: 15%; top: 75%; animation-duration: 28s; animation-delay: -2s; font-size: 4.5rem; }
.icon-5 { left: 80%; top: 80%; animation-duration: 32s; font-size: 3.5rem; animation-delay: -15s; }
.icon-6 { left: 40%; top: 10%; animation-duration: 29s; font-size: 5.5rem; animation-delay: -7s; }
.icon-7 { left: 90%; top: 45%; animation-duration: 33s; font-size: 6rem; opacity: 0.03; animation-delay: -12s; }
.icon-8 { left: 5%; top: 45%; animation-duration: 26s; font-size: 5rem; animation-delay: -8s; }

@keyframes float-around {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(15deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: center;
}

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

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

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

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

/* Trust Section */
.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 12px;
    transition: var(--transition);
}

.trust-list li:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.trust-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    text-align: center;
}

.trust-image {
    flex: 1;
}

/* Reviews */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.review-card .stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-card h4 {
    font-size: 1rem;
    color: var(--primary);
}

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

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

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

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

/* Location */
.location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer h3, .footer h4 {
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand span {
    color: #66b2ff; /* Lighter brand color for dark background contrast */
}

.footer-brand p {
    margin-top: 1rem;
    color: #adb5bd;
}

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a, .footer-social a {
    display: block;
    color: #adb5bd;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    color: #adb5bd;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-up {
    transform: translateY(50px);
}

.fade-in {
    transform: scale(0.95);
}

.fade-right {
    transform: translateX(-50px);
}

.fade-left {
    transform: translateX(50px);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .flex-row, .hero-container {
        flex-direction: column;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .card-1 { left: 0; }
    .card-2 { right: 0; }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        padding: 1.5rem;
        box-shadow: var(--shadow-sm);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .py-section {
        padding: 60px 0;
    }
}
