:root {
    --primary: #0077b6;
    --primary-dark: #023e8a;
    --secondary: #00b4d8;
    --accent: #caf0f8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #1d1d1f;
    --text-light: #515154;
    --white: #ffffff;
    --bg-light: #f5f5f7;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 60px;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-weight: 500;
    padding: 10px 0;
}

.nav-links > li > a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
}

.btn-phone {
    background: var(--primary);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.4);
}

/* Hero Section */
.hero {
    padding: 140px 0;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Floating Bubbles Animation */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-1200px) scale(0.5); opacity: 0; }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--bg-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card .img-container {
    overflow: hidden;
    height: 220px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.service-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
footer.footer {
    background: #0d1b2a;
    color: #ffffff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col.about p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 30px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-col.links ul li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-col.links ul li:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-col.links i {
    font-size: 0.8rem;
    color: var(--secondary);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #ccc;
}

.contact-item i {
    width: 20px;
    color: var(--secondary);
    margin-top: 5px;
}

.contact-item a:hover {
    color: var(--secondary);
}

.map-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    background: #0b1521;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Floating Actions Styling */
.floating-actions {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    transition: var(--transition);
}

.floating-btn span {
    position: absolute;
    right: 70px;
    background: rgba(0,0,0,0.8);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.floating-btn.whatsapp { background: #25d366; }
.floating-btn.phone { background: #0077b6; }

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }

    .contact-item i {
        margin-bottom: 5px;
    }

    .footer-col.links ul li {
        justify-content: center;
    }

    .footer-logo img {
        margin: 0 auto 30px;
    }
}

.floating-btn i {
    font-size: 1.5rem;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    header.scrolled .nav-links {
        top: 80px;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f8f8f8;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: #f9f9f9;
        margin: 10px 0;
        border-radius: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .header-contact {
        display: none;
    }
    
    .hero {
        padding: 80px 0 120px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Google Reviews Styling */
.review-card {
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.google-rating-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 50px;
    display: inline-flex !important;
    border: 1px solid #eee;
}

.faq-question:hover {
    background: #f0f7ff;
    color: var(--primary);
}

/* Page Content Padding */
.page-content {
    padding: 80px 0;
}

.article-header {
    margin-bottom: 50px;
}

.article-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.article-body {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.article-body h2 {
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.article-body p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.hero-text {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-image {
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}
