/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.hero, .services, .portfolio, .about, .contact, .footer {
    background: #f2f2f2;
    color: #333;
}

.hero {
    background: #f2f2f2;
}

/* Modern hero section background */
.hero {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%) !important;
    color: #222;
}

/* Remove gradients and set section backgrounds to ash */
.hero {
    background: #e6ecf3 !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section (restored classic split layout) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.7);
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.7);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img {
    width: 520px;
    height: 520px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
.hero-buttons .btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .hero-img {
        width: 350px;
        height: 350px;
        font-size: 6rem;
    }
    .hero-buttons .btn {
        font-size: 1.05rem;
        padding: 14px 28px;
    }
}
@media (max-width: 600px) {
    .hero-img {
        width: 220px;
        height: 220px;
        font-size: 3.5rem;
    }
    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-img {
        width: 300px;
        height: 300px;
        font-size: 6rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-img {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }
}

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

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

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

/* Colorful, interactive service cards */
/* Unified service card color and improved hero background */
.service-card {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.07);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s, background 0.4s;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}
.service-card:hover {
    transform: translateY(-10px) scale(1.045);
    box-shadow: 0 12px 36px rgba(52, 152, 219, 0.18);
    z-index: 2;
}
.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.18);
}
.service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

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

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.portfolio-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 500;
}

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

.about-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #7f8c8d;
    line-height: 1.5;
}

.address-link {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.address-link:hover {
    color: #3498db;
}

.address-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Enhanced form styling */
.form-group.focused input,
.form-group.focused textarea {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #2ecc71;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section p i {
    margin-top: 0.2rem;
    min-width: 16px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem;
    }
    
    .service-image {
        height: 120px;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-item,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Fade-in-up animation for service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-card {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Active navigation link */
.nav-link.active {
    color: #3498db;
}

.nav-link.active::after {
    width: 100%;
}

/* Floating WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* Email Quick Contact */
.email-quick-contact {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 1000;
}

.email-btn {
    display: flex;
    align-items: center;
    background: #3498db;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.email-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
}

.email-btn i {
    font-size: 1.5rem;
    margin-right: 8px;
}

.email-text {
    font-size: 0.9rem;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
    color: white;
    text-decoration: none;
}

.modal-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Enhanced Portfolio Item Hover */
.portfolio-item {
    cursor: pointer;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Responsive Floating Buttons */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 70px;
        right: 12px;
    }
    
    .email-quick-contact {
        bottom: 20px;
        right: 12px;
    }
    
    .whatsapp-btn,
    .email-btn {
        padding: 12px 15px;
    }
    
    .whatsapp-text,
    .email-text {
        display: none;
    }
    
    .whatsapp-btn i,
    .email-btn i {
        font-size: 1.8rem;
        margin-right: 0;
    }
} 

.getstarted-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.getstarted-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 350px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s;
}
.getstarted-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
}
.getstarted-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.getstarted-modal .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}
.getstarted-modal .btn-success {
    background: #25d366;
    color: #fff;
    border: none;
}
.getstarted-modal .btn-success:hover {
    background: #128c7e;
}
.close-getstarted-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}
.close-getstarted-modal:hover {
    color: #3498db;
}
@media (max-width: 480px) {
    .getstarted-modal-content {
        padding: 1.2rem 0.5rem;
    }
} 

.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    position: relative;
    z-index: 2;
}
.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d6e2;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 1px 3px rgba(44,62,80,0.08);
}
.hero-slider-dot.active {
    background: #3498db;
    transform: scale(1.2);
}
@media (max-width: 600px) {
    .hero-slider-dots {
        margin-top: 10px;
    }
    .hero-slider-dot {
        width: 9px;
        height: 9px;
    }
} 

/* Unified Hero Button Styles */
.btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  padding: 18px 60px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #3498db 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(52, 152, 219, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  min-width: 260px;
}
.btn:hover, .btn-primary:hover, .btn-secondary:hover,
.btn:focus, .btn-primary:focus, .btn-secondary:focus {
  background: linear-gradient(90deg, #2980b9 0%, #667eea 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(52, 152, 219, 0.22);
} 

/* Force WhatsApp and Email buttons to be exactly the same size */
.whatsapp-btn, .email-btn {
  width: 170px !important;
  height: 48px !important;
  font-size: 1.1rem !important;
  padding: 0 16px !important;
  border-radius: 28px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.13) !important;
  transition: all 0.3s !important;
}
.whatsapp-btn i, .email-btn i {
  font-size: 1.3rem !important;
  margin-right: 8px !important;
}

/* SN Logo in Navbar */
.sn-logo {
  height: 38px;
  width: auto;
  margin-right: 14px;
  vertical-align: middle;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.07);
  display: inline-block;
}
.nav-logo {
  display: flex;
  align-items: center;
} 

.hero, .hero-title, .hero-subtitle, .hero-buttons .btn {
    color: #111 !important;
}
.hero-buttons .btn {
    color: #fff !important;
} 

/* Floating Instagram Button Styles */
.instagram-quick-contact {
    position: fixed;
    bottom: 160px;
    right: 30px;
    z-index: 1000;
}
.instagram-btn {
    display: flex;
    align-items: center;
    background: #e1306c;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.18);
    transition: all 0.3s ease;
    font-weight: 600;
}
.instagram-btn:hover {
    background: #c13584;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.28);
    color: white;
}
.instagram-btn i {
    font-size: 1.5rem;
    margin-right: 8px;
}
.instagram-text {
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .instagram-quick-contact {
        bottom: 120px;
        right: 12px;
    }
    .instagram-btn {
        padding: 12px 15px;
    }
    .instagram-text {
        display: none;
    }
    .instagram-btn i {
        font-size: 1.8rem;
        margin-right: 0;
    }
} 

/* Unify floating button icon sizes and margins */
.whatsapp-btn i, .email-btn i, .instagram-btn i {
    font-size: 1.5rem;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .whatsapp-btn i, .email-btn i, .instagram-btn i {
        font-size: 1.8rem;
        margin-right: 0;
    }
} 

/* Full-width hero section with background slider */
.hero {
    position: relative;
    width: 100vw;
    min-height: 80vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.hero-slider-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-slider-track {
    width: 100%; height: 100%; position: absolute; top: 0; left: 0;
}
.hero-slide {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,2,.6,1);
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slider-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 3;
}
.hero-content-centered {
    position: relative;
    z-index: 4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.hero-cta {
    font-size: 1.3rem;
    padding: 1.1rem 2.8rem;
    border-radius: 32px;
    font-weight: 700;
    background: #ff5c5c;
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 1.2rem;
}
.hero-cta:hover {
    background: #e14b4b;
    box-shadow: 0 8px 32px rgba(255,92,92,0.18);
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 0; right: 0; bottom: 38px;
    z-index: 11;
}
.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d6e2;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 1px 3px rgba(44,62,80,0.08);
}
.hero-slider-dot.active {
    background: #ff5c5c;
    transform: scale(1.2);
}
@media (max-width: 900px) {
    .hero-title { font-size: 2.2rem; }
    .hero-cta { font-size: 1.05rem; padding: 0.8rem 1.8rem; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 1.3rem; }
    .hero-cta { font-size: 0.95rem; padding: 0.6rem 1.1rem; }
} 

/* Floating Social Buttons */
.floating-social-buttons {
    position: fixed;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1002;
}
.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(44,62,80,0.13);
    border: none;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s, background 0.2s, transform 0.15s;
    padding: 0;
}
.floating-btn svg {
    display: block;
}
.floating-btn.whatsapp:hover {
    background: #25D366;
}
.floating-btn.instagram:hover {
    background: #E1306C;
}
.floating-btn.gmail:hover {
    background: #EA4335;
}
.floating-btn:hover svg path,
.floating-btn:hover svg rect,
.floating-btn:hover svg circle {
    filter: brightness(1.2);
}
.floating-btn.phone:hover {
    background: #3498db;
}
.floating-btn.phone:hover svg path,
.floating-btn.phone:hover svg circle {
    stroke: #fff;
}
@media (max-width: 900px) {
    .floating-social-buttons {
        right: 12px;
        gap: 12px;
    }
    .floating-btn {
        width: 44px;
        height: 44px;
    }
}
@media (max-width: 600px) {
    .floating-social-buttons {
        right: 6px;
        gap: 8px;
    }
    .floating-btn {
        width: 38px;
        height: 38px;
    }
} 

.nav-cta {
    margin-left: 1.5rem;
    font-size: 1.05rem;
    padding: 0.7rem 1.7rem;
    border-radius: 28px;
    font-weight: 700;
    background: #ff5c5c;
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.nav-cta:hover {
    background: #e14b4b;
    box-shadow: 0 8px 32px rgba(255,92,92,0.18);
}
@media (max-width: 900px) {
    .nav-cta {
        font-size: 0.95rem;
        padding: 0.6rem 1.1rem;
        margin-left: 0.5rem;
    }
}
@media (max-width: 600px) {
    .nav-cta {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
        margin-left: 0.2rem;
    }
}
/* Remove .hero-cta-topright styles if present */
.hero-cta-topright { display: none !important; } 

.hero-title, .hero-subtitle { color: #fff !important; } 