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

body {
    font-family: 'Google Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2b2a76, #f25224);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2a76;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #f25224, #2b2a76);
    color: white;
    box-shadow: 0 4px 15px rgba(242, 82, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 82, 36, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #2b2a76;
}

/* Header */
.top-bar {
    background: #2b2a76;
    color: white;
    padding: 5px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quote-btn {
    background: #f25224;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #d63d1a;
    transform: translateY(-1px);
}

.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #2b2a76;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f25224;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f25224;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2b2a76;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(43, 42, 118, 0.9) 0%, rgba(242, 82, 36, 0.9) 100%), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #f25224;
}

.stat p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(43, 42, 118, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(43, 42, 118, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 42, 118, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f25224, #2b2a76);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2a76;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #ffebe5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.mission {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f25224;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-feature i {
    color: #f25224;
    font-size: 18px;
}

.about-feature span {
    font-weight: 500;
    color: #2b2a76;
}

.contact-cta {
    background: linear-gradient(135deg, #2b2a76, #f25224);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.cta-content {
    color: white;
    text-align: center;
}

.cta-content p {
    margin-bottom: 15px;
    color: white;
    opacity: 0.9;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #2b2a76;
    border: 2px dashed #cbd5e0;
}

.image-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.image-placeholder p {
    font-weight: 600;
    opacity: 0.7;
    margin: 0;
}

/* Services Section */
.services {
    background: #f8fafc;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(43, 42, 118, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(43, 42, 118, 0.05);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h4,
.service-card p,
.service-card .service-features,
.service-card .service-btn {
    padding: 0 30px;
}

.service-card h4 {
    padding-top: 30px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card .service-features {
    margin-bottom: 25px;
}

.service-card .service-btn {
    margin: 0 30px 30px 30px;
    display: block;
    text-align: center;
    width: calc(100% - 60px);
    padding: 10px 0px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 42, 118, 0.15);
}

.service-card.featured {
    border: 2px solid #f25224;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f25224;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f25224, #2b2a76);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2b2a76;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #2b2a76;
    font-weight: 500;
}

.service-features i {
    color: #f25224;
    font-size: 12px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f25224, #2b2a76);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(242, 82, 36, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 82, 36, 0.4);
    gap: 15px;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #2b2a76;
    color: white;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-text .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.video-text .section-tag {
    background: rgba(242, 82, 36, 0.2);
    color: #f25224;
}

.video-text h2 {
    color: white;
}

.video-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.video-stats {
    display: flex;
    gap: 40px;
}

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

.video-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f25224;
    margin-bottom: 5px;
}

.video-stat p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.video-player {
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, rgba(242, 82, 36, 0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(242, 82, 36, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #f25224;
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.video-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.video-overlay p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Testimonial Section */
.testimonial {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 0 20px;
}

.testimonial-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(43, 42, 118, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: #f25224;
    font-family: serif;
    line-height: 1;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.stars i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #2b2a76;
    margin-bottom: 30px;
    line-height: 1.7;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f25224, #2b2a76);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.client-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2a76;
    margin-bottom: 5px;
}

.client-details span {
    color: #666;
    font-size: 14px;
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -60px;
}

.slick-dots li button:before {
    color: #2b2a76;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #f25224;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 1;
}

.slick-prev {
    left: -70px;
}

.slick-next {
    right: -70px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px;
    color: #2b2a76;
}

/* Specialty Section */
.specialty {
    padding: 100px 0;
    background-color: #ffebe5;
}

.specialty .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialty-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(43, 42, 118, 0.08);
    border: 1px solid rgba(43, 42, 118, 0.05);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 42, 118, 0.15);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f25224, #2b2a76);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.specialty-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2a76;
    margin-bottom: 15px;
}

.specialty-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8fafc;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 42, 118, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(43, 42, 118, 0.15);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* FAQ & Enquiry Section */
.faq-enquiry {
    padding: 100px 0;
    background: #ffebe5;
}

.faq-enquiry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-section .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.faq-list {
    space-y: 20px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(43, 42, 118, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    background: white;
    border-left: 4px solid #f25224;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2a76;
    margin: 0;
}

.faq-question i {
    color: #f25224;
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.enquiry-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(43, 42, 118, 0.1);
}

.enquiry-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.enquiry-section .section-header p {
    color: #666;
    margin-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.enquiry-section .form-group input,
.enquiry-section .form-group select,
.enquiry-section .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Google Sans', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.enquiry-section .form-group input:focus,
.enquiry-section .form-group select:focus,
.enquiry-section .form-group textarea:focus {
    outline: none;
    border-color: #f25224;
}

.enquiry-section .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .faq-enquiry-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .enquiry-section {
        padding: 30px 20px;
    }
}

/* Footer */
.footer {
    background: #2b2a76;
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #f25224;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: #f25224;
}

.contact-details p {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.contact-details i {
    margin-top: 5px;
    color: #f25224;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f25224;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }
    
    .quote-btn {
        margin: 15px 20px;
        text-align: center;
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content,
    .video-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .specialty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .slick-prev {
        left: -30px;
    }
    
    .slick-next {
        right: -30px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .whatsapp-sticky {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .feature-card,
    .service-card,
    .specialty-card {
        padding: 25px 20px;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .slick-prev,
    .slick-next {
        display: none !important;
    }
    
    .video-placeholder {
        height: 200px;
    }
    
    .about-image .image-placeholder {
        height: 250px;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: block;
}

.whatsapp-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappBlink 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-sticky a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappBlink {
    0%, 50%, 100% { transform: scale(1); }
    25%, 75% { transform: scale(1.1); }
}

/* Mobile Action Buttons */
.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1000;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    transition: all 0.3s ease;
}

.call-btn {
    background: #f25224;
    color: white;
}

.chat-btn {
    background: #25d366;
    color: white;
}

.mobile-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        display: none;
    }
    
    .mobile-actions {
        display: flex;
    }
}

/* Quote Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 42, 118, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #f25224;
}

.modal h2 {
    color: #2b2a76;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.6rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Google Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f25224;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#quoteForm .btn {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
}