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

:root {
    --primary-color: #C9A961;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #28a745;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.align-center {
    align-items: center;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

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

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin-top: 15px;
}

.title-underline.center {
    margin: 15px auto 0;
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: #b89850;
    border-color: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo span {
    font-size: 12px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0;
    color: var(--white);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-form {
    flex: 0 0 400px;
}

.enquiry-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.enquiry-form h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.enquiry-form input,
.enquiry-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    background: var(--white);
}

.lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #b89850);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

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

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Contract Models */
.contract-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

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

.contract-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.contract-header {
    text-align: center;
    margin-bottom: 20px;
}

.contract-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contract-header h3 {
    font-size: 26px;
    color: var(--secondary-color);
}

.contract-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.contract-features {
    list-style: none;
    margin-bottom: 30px;
}

.contract-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contract-features li:last-child {
    border-bottom: none;
}

.contract-features i {
    color: var(--primary-color);
}

/* Packages Section */
.package-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.package-price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.package-price .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--primary-color);
}

.package-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .per {
    font-size: 16px;
    color: #666;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: var(--primary-color);
}

/* Projects Gallery */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 300px;
}

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

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 30px 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.project-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Custom Enquiry Form */
.enquiry-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.custom-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: #666;
}

/* Why Choose Section */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-box p {
    color: #666;
    font-size: 15px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: #f9f6f0;
}

.comparison-table .fa-check-circle {
    color: var(--success-color);
    margin-right: 8px;
}

.comparison-table .fa-times-circle {
    color: #dc3545;
    margin-right: 8px;
}

/* FAQ Section */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-info span {
    color: #999;
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--secondary-color);
}

/* Trust Section */
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.brand-item {
    padding: 20px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--text-color);
    min-width: 150px;
    text-align: center;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu li {
        padding: 15px 30px;
        width: 100%;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-form {
        flex: 1;
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-number {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        max-width: 100%;
        margin-left: 0 !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}
#masthead,
.site-header {
    display: none !important;
}

#colophon,
.site-footer {
    display: none !important;
}
.site-logo {
    height: 80px;   /* increase size */
    width: auto;
    max-height: 90px;
}

.logo a {
    display: flex;
    align-items: center;
}
.site-logo {
    height: 85px;
    width: auto;
}
/* ===== MOBILE HORIZONTAL SCROLL FIX ===== */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

/* Prevent elements from exceeding screen width */
* {
    box-sizing: border-box;
    max-width: 100%;
}
img, video {
    max-width: 100%;
    height: auto;
}
/* =====================================================
   GLOBAL MOBILE ALIGNMENT FIX (SAFE — NO DESIGN CHANGE)
   ===================================================== */

@media (max-width: 768px) {

    /* Fix Bootstrap-style row overflow causing left shift */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: center;
    }

    /* Keep all columns perfectly centered */
    .col-md-3,
    .col-md-4,
    .col-md-6 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Container full mobile fit */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* HERO SECTION FIX */
    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        width: 100%;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-form {
        width: 100%;
        max-width: 100%;
    }

    /* ABOUT SECTION PERFECT CENTER */
    .about {
        text-align: center;
    }

    .about .section-title,
    .about p,
    .about .lead {
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .feature-item {
        justify-content: center;
    }

    .about-image {
        margin-top: 25px;
        text-align: center;
    }

    .about-image img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }

    /* FORMS ALIGNMENT */
    .custom-form,
    .enquiry-form {
        padding: 25px 18px;
    }

    /* BUTTON CENTER FIX */
    .btn {
        text-align: center;
    }

    /* REMOVE ANY SMALL SIDE OVERFLOW */
    section {
        overflow-x: hidden;
    }
}


/* EXTRA SMALL DEVICES */
@media (max-width: 576px) {

    body {
        overflow-x: hidden;
    }

    .hero {
        background-attachment: scroll; /* fixes mobile background shift */
    }

    .section-title {
        text-align: center;
    }

}
/* WHATSAPP FLOAT ICON */
.wa-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 99999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.wa-float:hover {
    transform: translateY(-50%) scale(1.1);
    background: #20b858;
}
.wa-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.site-logo {
    height: 100px;
    max-height: 110px;
    width: auto;
}

/* ===== Static Cloudflare additions ===== */
body { background: #fff; }
.header { width: 100%; }
.logo a { display:flex; align-items:center; gap:10px; }
.logo-mark { width:44px; height:44px; border-radius:50%; background:var(--primary-color); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Playfair Display',serif; font-weight:700; font-size:22px; }
.logo h2 { font-size: 22px; line-height:1; }
.logo span { display:block; margin-top:4px; }
.nav-cta .btn { padding: 9px 18px; font-size:14px; }
.page-hero { background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)), url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&h=700&fit=crop'); background-size:cover; background-position:center; padding:90px 0; color:#fff; text-align:center; }
.page-hero h1 { color:#fff; font-size:48px; margin-bottom:12px; }
.page-hero p { font-size:18px; opacity:.9; }
.back-to-top { position:fixed; right:22px; bottom:22px; width:54px; height:54px; border:0; border-radius:50%; background:var(--primary-color); color:#fff; font-size:20px; box-shadow:0 10px 30px rgba(0,0,0,.18); z-index:9999; cursor:pointer; display:none; }
.back-to-top.show { display:flex; align-items:center; justify-content:center; }
.static-note { background:#fff8e1; border:1px solid #eed488; padding:14px 18px; border-radius:8px; margin:20px auto; max-width:900px; font-size:14px; }
@media (max-width: 992px) { .nav-menu { top:74px; z-index:999; } .logo h2{font-size:18px;} .logo span{font-size:10px;} }
@media (max-width: 768px) { .page-hero h1{font-size:34px;} .page-hero{padding:70px 0;} .footer-content{grid-template-columns:1fr!important;text-align:left;} .cta-buttons{flex-direction:column; align-items:center;} }


/* ===== Requested updates: larger header, real logo, comparison heading ===== */
.nav-wrapper { padding: 20px 0 !important; min-height: 92px; }
.logo-image { height: 68px; width: auto; display: block; object-fit: contain; }
.logo-text { display: none; }
@media (max-width: 768px) {
  .nav-wrapper { padding: 14px 0 !important; min-height: 78px; }
  .logo-image { height: 56px; }
}
.comparison-table thead th.highlight { background: var(--secondary-color) !important; color: var(--white) !important; }
.comparison-table thead th.highlight::selection { background: var(--primary-color); color: #fff; }
.video-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:30px; }
.video-card { background:#fff; border-radius:10px; box-shadow:var(--shadow); overflow:hidden; }
.video-card video { width:100%; display:block; aspect-ratio:16/9; object-fit:cover; background:#111; }
.video-card h3 { padding:18px 20px 5px; font-size:20px; }
.video-card p { padding:0 20px 20px; color:#666; font-size:14px; }
@media (max-width: 768px) { .video-grid { grid-template-columns:1fr; gap:20px; } }


/* ===== Final Cloudflare static updates ===== */
.nav-wrapper { padding: 20px 0 !important; min-height: 96px; }
.logo-image { height: 72px; width: auto; display: block; object-fit: contain; }
.logo-text { display: none; }
.comparison-table thead th.highlight { background: #111 !important; color: #fff !important; }
.video-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:30px; }
.video-card { background:#fff; border-radius:10px; box-shadow:var(--shadow); overflow:hidden; }
.video-card video { width:100%; display:block; aspect-ratio:16/9; object-fit:cover; background:#111; }
.video-card h3 { padding:18px 20px 5px; font-size:20px; }
.video-card p { padding:0 20px 20px; color:#666; font-size:14px; }
@media (max-width: 768px) {
  .nav-wrapper { padding: 14px 0 !important; min-height: 82px; }
  .logo-image { height: 58px; }
  .video-grid { grid-template-columns:1fr; gap:20px; }
}
