/* Color Palette & Variables */
:root {
    --primary-color: #00205b; /* Navy Blue */
    --secondary-color: #d4af37; /* Gold */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    
    /* Call Button Variables */
    --call-bg-color: #d4af37;
    --call-pulse-color: rgba(212, 175, 55, 0.6);
    --call-shadow-color: rgba(0, 0, 0, 0.3);
    --call-icon-color: #00205b;
}

/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-name {
    font-family: 'Merriweather', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-center { text-align: center; }
.gold-text { color: var(--secondary-color); }
.light-text { color: var(--white); }

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 35px;
    height: 35px;
}

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

.logo-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.header-phone {
    font-weight: 700;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 4px;
}

.header-phone:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 91, 0.8); /* Navy Blue Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #b8952b;
}

/* About Section */
.about-text-box {
    background: var(--white);
    padding: 40px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.about-text-box p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
    text-align: justify;
}

/* Grid System for cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Cards (Services) */
.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-top-color: var(--secondary-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Advantages */
.advantage-item {
    text-align: center;
    padding: 30px;
}
.advantage-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Awards */
.awards-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.award-badge {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

/* Reviews */
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header h4 {
    color: var(--primary-color);
    font-size: 18px;
}

.verified {
    font-size: 12px;
    color: #28a745;
    font-weight: 700;
}

.stars {
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-link {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Service Areas */
.service-area-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Location */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-box {
    margin-bottom: 25px;
}

.detail-box h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-highlight {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 6px;
    border-left: 5px solid var(--secondary-color);
}
.contact-highlight h4 { color: var(--secondary-color); }
.contact-highlight a { color: var(--secondary-color); text-decoration: underline; }

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-desc {
    color: #cccccc;
    font-size: 14px;
    max-width: 300px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cccccc;
    font-size: 14px;
}

.footer-menu a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #999999;
}

.footer-policy-link {
    cursor: pointer;
}
.footer-policy-link:hover {
    color: var(--white);
}

.developer-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dev-logo-text {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 9999;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}

.floating-call-btn::before,
.floating-call-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--call-pulse-color);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite ease-out;
}

.floating-call-btn::after {
    animation-delay: 0.5s;
}

.call-btn-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--call-bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--call-shadow-color);
    transition: transform 0.3s ease;
    z-index: 1;
}

.floating-call-btn:hover .call-btn-circle {
    transform: scale(1.05);
}

.phone-icon {
    width: 32px;
    height: 32px;
    color: var(--call-icon-color);
    animation: phone-shake 2.5s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes phone-shake {
    0%, 15%, 100% { transform: rotate(0deg); }
    3%  { transform: rotate(-20deg); }
    6%  { transform: rotate(20deg); }
    9%  { transform: rotate(-20deg); }
    12% { transform: rotate(20deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 40px; }
    .hero-content h2 { font-size: 22px; }
    
    .header-contact {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .header-phone {
        display: none; /* Hide on small mobile to save space, CTA is in hero and floating button */
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }

    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}