:root {
    --primary-color: #FC9D00;
    --secondary-color: #1e293b;
    --accent-color: #ffb100;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(252, 157, 0, 0.1);
    z-index: -1;
}

/* Header & Nav */
header {
    padding: 2px 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 157, 0, 0.3);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(252, 157, 0, 0.2);
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
    z-index: -1;
}

.hero .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

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

/* Services */
.services {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: 0;
    background: var(--bg-light);
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.service-card p {
    padding: 0 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    text-align: justify;
}

.read-more-btn {
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    margin-left: 5px;
    text-decoration: underline;
}

.more-text {
    display: none;
}

.service-card.expanded .more-text {
    display: inline;
}

.service-card.expanded .dots {
    display: none;
}

.service-card.expanded .read-more-btn {
    display: inline-block;
    margin-top: 10px;
}

/* Process Section */
.process {
    padding: 20px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.step:hover .step-num {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: justify;
}

/* Stats */
.stats {
    background: var(--secondary-color);
    padding: 20px 0;
    color: white;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-item .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Contact */
.contact {
    padding: 20px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-list {
    margin-top: 3rem;
}

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

.info-item span {
    width: 45px;
    height: 45px;
    background: rgba(252, 157, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover span {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .info-item span {
    font-size: 1.5rem;
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.6;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Page Styles */
.page-hero {
    padding: 100px 0;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.page-hero .hero-content {
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
    text-align: justify;
    line-height: 1.8;
}

.cta-section {
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* Contact Page Specific Styles */
.contact-page-content {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.detailed-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-card h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.styled-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.styled-form .form-group {
    margin-bottom: 1.5rem;
}

.styled-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.styled-form input, 
.styled-form select, 
.styled-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.styled-form input:focus, 
.styled-form select:focus, 
.styled-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 157, 0, 0.1);
}

.map-section {
    padding-bottom: 100px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .styled-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.call {
    background: var(--primary-color);
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 157, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(252, 157, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(252, 157, 0, 0);
    }
}

.float-btn.whatsapp {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Modern FAQ Section */
.faq {
    padding: 20px 0;
    background: white;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-header p {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(252, 157, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 0.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background-color: var(--primary-color);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: white;
}

.faq-question .icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2.5rem 2rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-item.faq-open {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(252, 157, 0, 0.1);
}

.faq-item.faq-open .faq-question {
    background-color: white;
    padding-bottom: 1rem;
}

.faq-item.faq-open .faq-question h3 {
    color: black;
}

.faq-item.faq-open .icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

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

.faq-cta {
    margin-top: 5rem;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
}

.faq-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

.faq-cta a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-cta a:hover::after {
    transform: scaleX(1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 30px 0 20px;
    background: var(--bg-light);
}

.choose-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.choose-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.choose-content p {
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
}

.choose-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Footer Section - Inspired by Reference Image */
.main-footer {
    background: #0b0b1a;
    color: #a0a0b8;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

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

.footer-logo-img {
    height: 100px;
    margin-bottom: 2rem;
    filter: brightness(1.2);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.brand-desc {
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 280px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fcc200;
}

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

.footer-grid ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link-icon {
    width: 14px;
    height: 14px;
    color: #fcc200;
    transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fcc200;
    padding-left: 5px;
}

.footer-col ul li a:hover .footer-link-icon {
    transform: translateX(3px);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: white;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: #fcc200;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-credits {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-brand {
        text-align: left;
    }
}

/* Responsive Design Improvements */
@media (max-width: 1024px) {
    .choose-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .choose-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .choose-content p {
        text-align: justify;
    }

    .choose-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }
    
    .logo img {
        height: 60px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    nav.active {
        display: block !important;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 18px 30px;
        font-size: 1.1rem;
        color: #000 !important;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    /* Active Dropdown Styling on Mobile */
    .dropdown.active > .dropbtn {
        background: rgba(0, 0, 0, 0.08) !important;
    }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--secondary-color);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-contact {
        grid-column: span 1;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }

    .footer-contact p {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    .hero .container, .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Experience Section */
.experience-section {
    background: #000;
    color: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}

.experience-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.experience-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--primary-color);
    opacity: 0.9;
    text-align: justify;
}

.experience-content .highlight {
    color: white;
}

/* Service Areas Section */
.service-areas {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('home shifting services.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.areas-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.areas-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    opacity: 0.9;
}

.areas-content .highlight {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

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

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0 !important;
    list-style: none;
    border-top: 3px solid #fcc200;
}

.dropdown-content li {
    display: block !important;
    margin: 0 !important;
}

.dropdown-content li a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: block !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.dropdown-content li a:hover {
    background-color: #fff9e6;
    color: #fcc200 !important;
    padding-left: 25px !important;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Mobile Dropdown */
@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.05);
        box-shadow: none;
        min-width: 100%;
        transform: none;
        border-top: none;
        padding: 0 !important;
    }

    .dropdown-content li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .dropdown-content li:last-child {
        border-bottom: none;
    }

    .dropdown-content li a {
        padding: 12px 50px !important;
        background: transparent !important;
        color: #333 !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }

    @keyframes dropdownFadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ==========================================
   GLOBAL RESPONSIVE FIXES (ALL SCREENS)
   ========================================== */

/* 1. Base Fixes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* 2. Tablet Overrides (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }

    .experience-content h2, .areas-content h2, .choose-content h2 {
        font-size: 2.8rem !important;
    }

    .contact-grid {
        gap: 2rem;
    }
}

/* 3. Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    h1, .hero-content h1, .page-hero h1 {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }

    h2, .section-header h2, .content-block h2, .cta-section h2 {
        font-size: 2.2rem !important;
    }

    h3 {
        font-size: 1.6rem !important;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 140px 0 80px;
    }

    .page-hero {
        padding: 120px 0 60px;
        min-height: 300px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .experience-content h2, .areas-content h2 {
        font-size: 2.2rem !important;
        margin-bottom: 2rem;
    }

    .experience-content p, .areas-content p, .content-block p {
        font-size: 1rem;
        text-align: justify !important;
    }

    .cta-section {
        padding: 2.5rem;
        margin-top: 2rem;
    }

    /* Process steps adjustment */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Stats adjustment */
    .stats .container {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-item h2 {
        font-size: 3rem !important;
    }

    /* Form adjustment */
    .contact-wrapper, .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-form-container {
        padding: 2rem;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: left;
        gap: 3rem;
    }

    .contact-details {
        align-items: flex-start;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo-img {
        margin: 0 auto 2rem auto !important;
    }
}

/* 4. Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    h1, .hero-content h1, .page-hero h1 {
        font-size: 2.2rem !important;
    }

    h2, .section-header h2, .content-block h2 {
        font-size: 1.8rem !important;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    .float-btn svg {
        width: 20px;
        height: 20px;
    }

    .logo img {
        height: 60px;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Fix for overlapping text in service cards */
p {
    text-align: justify;
}

.service-card p {
    hyphens: auto;
}

/* Ensure dropdown doesn't overflow */
.dropdown-content {
    max-width: 90vw;
}

