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

        :root {
            --primary-color: #1a1f35;
            --secondary-color: #e74c3c;
            --accent-color: #f39c12;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #1a1f35 0%, #2c3e50 100%);
            --gradient-accent: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
        }

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

        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

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

        /* Pre-header */
        .pre-header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 12px 0;
            font-size: 14px;
        }

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

        .pre-header-contact {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .pre-header-contact a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .pre-header-contact a:hover {
            color: var(--accent-color);
        }

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

        .pre-header-social a {
            color: var(--white);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s;
        }

        .pre-header-social a:hover {
            background: var(--accent-color);
            transform: translateY(-2px);
        }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--secondary-color);
        }

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

        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 600px;
            overflow: hidden;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-item {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel-item.active-slide {
            opacity: 1;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgb(26 31 53 / 93%) 0%, rgb(231 76 60 / 47%) 100%), url(../images/frige.jpg4.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
            animation: slideUp 1s ease-out;
        }

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

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 12px;
            margin-bottom: 30px;
            font-weight: 400;
        }

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

        .btn {
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
        }

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

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

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background: var(--white);
            width: 35px;
            border-radius: 6px;
        }

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

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-light);
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .about-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .about-content ul {
            list-style: none;
            margin: 20px 0;
        }

        .about-content ul li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-light);
        }

        .about-content ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 18px;
        }

        /* Services Zigzag */
        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .service-item:nth-child(even) .service-content {
            order: 1;
        }

        .service-item:nth-child(even) .service-image {
            order: 2;
        }

        .service-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .service-image img {
            width: 100%;
            border-radius: 20px;
            transition: transform 0.5s;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .service-item:hover .service-image img {
            transform: scale(1.05);
        }

        .service-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .service-content p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .service-types {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .service-type-badge {
            background: var(--bg-light);
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 500;
            color: var(--text-dark);
            border-left: 3px solid var(--secondary-color);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
            padding: 60px 20px;
            border-radius: 20px;
            margin: 60px 0;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            margin-bottom: 20px;
        }

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

        /* Brand Page Hero */
        .brand-hero {
            background: var(--gradient-primary);
            padding: 100px 0;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .brand-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }

        .brand-hero-content {
            position: relative;
            z-index: 1;
        }

        .brand-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            margin-bottom: 20px;
        }
        
        @media screen and (max-width: 768px) {
        .map-container {
            display: none;
        }
        .brand-hero h1 {
            font-size: 22px;
            margin-bottom: 7px;
        }
        .brand-hero p {
    font-size: 15px!important;
    margin: 0 15px!important;
        }
        .cta-buttons {
        margin: 0 20px;
        }
        }

        .brand-hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            background: var(--bg-light);
            padding: 40px;
            border-radius: 20px;
        }

        .contact-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .contact-item {
            display: flex;
            align-items: start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .contact-details p {
            color: var(--text-light);
        }

        .contact-details a {
            color: var(--secondary-color);
            text-decoration: none;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

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

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

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

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

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

        .map-container {
            margin-top: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .map-container iframe,
        .map-container img {
            width: 100%;
            height: 400px;
            border: none;
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .footer-about p {
            opacity: 0.8;
            line-height: 1.8;
        }

        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

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

        .footer-section ul li a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-section ul li a:hover {
            opacity: 1;
        }

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

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            cursor: pointer;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }

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

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 38px;
            }

            .about-grid,
            .service-item,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .service-item:nth-child(even) .service-content,
            .service-item:nth-child(even) .service-image {
                order: initial;
            }

            .service-types {
                grid-template-columns: 1fr;
            }

            .pre-header .container {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .hero {
                height: 500px;
            }

            .hero-content h1 {
                font-size: 32px;
            }
            
            .section-subtitle {
                font-size: 13px;
            }

            .section-title {
                font-size: 22px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }


        /* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 105px;
    right: 31px;
    width: 60px;
    height: 60px;
    background: #ebebeb;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    animation: pulseCall 1.5s infinite ease-in-out;
}

@keyframes pulseCall {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
