
       :root {
            --primary-blue: #005baa;
            --secondary-yellow: #ffd100;
            --dark-blue: #003e6e;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-color: #333;
            --border-radius: 10px;
            --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --success-green: #28a745;
            --danger-red: #dc3545;
            --nav-height: 80px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--nav-height);
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background-color: var(--white);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.25rem;
        }
        
        h1 { font-size: 2.75rem; }
        h2 { font-size: 2.25rem; }
        h3 { font-size: 1.75rem; }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Layout */
        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-padding {
            padding: 6rem 0;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background-color: var(--secondary-yellow);
            color: var(--text-color);
            padding: 0.875rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 700;
            text-align: center;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            font-size: 1.05rem;
        }
        
        .btn:hover {
            background-color: #e6c100;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--dark-blue);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }
        
        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }
        
        .btn-success {
            background-color: var(--success-green);
            color: var(--white);
        }
        
        .btn-success:hover {
            background-color: #218838;
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        /* Navigation */
       
      
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-img {
            height: 40px;
        }
        
        .logo-text {
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        
        .logo-text span {
            color: var(--secondary-yellow);
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .nav-links a {
            font-weight: 600;
            color: var(--dark-blue);
            position: relative;
            padding: 0.5rem 0;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-yellow);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
            left: 0;
        }
        
        .nav-cta {
            display: flex;
            gap: 1rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        /* Header Styles */
        .business-header {
            background: linear-gradient(rgba(0, 91, 170, 0.9), rgba(0, 62, 110, 0.9)), 
                        url('../111112.jpg');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 9rem 0 7rem;
            text-align: right;
            position: relative;
        }
        
        .business-header .container {
            position: relative;
            z-index: 2;
        }
        
        .business-header h1 {
            font-size: clamp(2.25rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
            line-height: 1.2;
        }
        
        .business-header p {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            max-width: 650px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }
        
        .header-cta {
            display: flex;
            gap: 1.5rem;
            animation: fadeIn 1s ease 0.6s forwards;
            opacity: 0;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
            padding-bottom: 1.25rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 5px;
            background-color: var(--secondary-yellow);
            border-radius: 3px;
        }
        
        .section-title p {
            max-width: 750px;
            margin: 1rem auto 0;
            color: #666;
            font-size: 1.15rem;
        }
        
        /* Insurance Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .feature-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--box-shadow);
            text-align: right;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border-bottom: 4px solid var(--primary-blue);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 91, 170, 0.1) 0%, rgba(255, 209, 0, 0.08) 100%);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1.75rem;
            transition: var(--transition);
            display: inline-flex;
            width: 80px;
            height: 80px;
            background-color: rgba(0, 91, 170, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            color: var(--dark-blue);
            background-color: rgba(0, 91, 170, 0.2);
        }
        
        .feature-card h3 {
            color: var(--primary-blue);
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }
        
        .feature-card p {
            color: #555;
            font-size: 1.05rem;
        }
        
        /* Stats Section */
        .stats-section {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item {
            position: relative;
            padding: 1.5rem;
            z-index: 1;
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 1px;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .stat-item:last-child::after {
            display: none;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: var(--secondary-yellow);
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .stats-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%23ffffff" width="50" height="50" x="50" y="50"/></svg>');
            background-size: 20px 20px;
            z-index: 0;
        }
        
        /* Coverage Section */
        .coverage-section {
            background-color: var(--light-gray);
        }
        
        .coverage-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .coverage-item {
            background-color: var(--white);
            margin-bottom: 1.25rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border-right: 4px solid var(--primary-blue);
        }
        
        .coverage-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .coverage-header {
            padding: 1.5rem;
            background-color: var(--primary-blue);
            color: var(--white);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .coverage-header:hover {
            background-color: var(--dark-blue);
        }
        
        .coverage-header i {
            transition: var(--transition);
        }
        
        .coverage-content {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .coverage-content.active {
            padding: 2rem;
            max-height: 1000px;
        }
        
        .coverage-content ul {
            list-style-type: none;
        }
        
        .coverage-content li {
            padding: 0.75rem 0;
            position: relative;
            padding-right: 2rem;
            font-size: 1.1rem;
        }
        
        .coverage-content li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary-yellow);
            position: absolute;
            right: 0;
            font-size: 1.1rem;
        }
        
        /* Business Types Section */
        .business-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .business-type-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .business-type-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .business-type-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .business-type-img::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to top, rgba(0, 91, 170, 0.7), transparent);
            z-index: 1;
        }
        
        .business-type-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .business-type-card:hover .business-type-img img {
            transform: scale(1.1);
        }
        
        .business-type-content {
            padding: 2rem 1.5rem;
        }
        
        .business-type-content h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .business-type-content p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95)), 
                        url('assets/img/calculator-bg.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .calculator-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
        }
        
        .calculator-form {
            max-width: 850px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1;
            border-top: 5px solid var(--secondary-yellow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 600;
            color: var(--dark-blue);
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 0.875rem 1.25rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light-gray);
            font-family: 'Tajawal', sans-serif;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 91, 170, 0.2);
            background-color: var(--white);
        }
        
        .form-row {
            display: flex;
            gap: 1.5rem;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .checkbox-group {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }
        
        .checkbox-group label {
            font-weight: 600;
            color: var(--dark-blue);
            font-size: 1.1rem;
        }
        
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1.25rem;
            margin-top: 1.5rem;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        
        .checkbox-item:hover {
            background-color: rgba(0, 91, 170, 0.05);
        }
        
        .checkbox-item input {
            width: 20px;
            height: 20px;
            accent-color: var(--primary-blue);
        }
        
        .checkbox-item label {
            font-weight: 500;
            margin-bottom: 0;
            font-size: 1rem;
        }
        
        .calculator-actions {
            margin-top: 2.5rem;
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: var(--light-gray);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--white);
            margin-bottom: 1.25rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border-right: 4px solid var(--primary-blue);
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: var(--primary-blue);
            color: var(--white);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            font-size: 1.2rem;
        }
        
        .faq-question:hover {
            background-color: var(--dark-blue);
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .faq-answer.active {
            padding: 2rem;
            max-height: 1000px;
        }
        
        .faq-answer p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Call to Action */
        .cta-section {
            background-color: var(--primary-blue);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        /* Result Box */
        .result-box {
            margin-top: 2.5rem;
            padding: 2rem;
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            text-align: center;
            display: none;
            animation: fadeIn 0.5s ease;
            border-left: 5px solid var(--success-green);
            box-shadow: var(--box-shadow);
        }
        
        .result-box h3 {
            color: var(--primary-blue);
            font-size: 1.5rem;
        }
        
        .quote-amount {
            font-size: 2.5rem;
            color: var(--success-green);
            font-weight: 900;
            margin: 1.5rem 0;
            animation: pulse 2s infinite;
        }
        
        .quote-details {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px dashed #ddd;
            text-align: right;
        }
        
        .quote-details ul {
            list-style: none;
        }
        
        .quote-details li {
            margin-bottom: 0.75rem;
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .quote-details li:last-child {
            border-bottom: none;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #ddd;
        }
        
        .quote-details li span:first-child {
            font-weight: 600;
            color: var(--dark-blue);
        }
        
        /* Loading Spinner */
        .spinner {
            display: none;
            width: 50px;
            height: 50px;
            margin: 30px auto;
            border: 5px solid rgba(0, 91, 170, 0.1);
            border-radius: 50%;
            border-top-color: var(--primary-blue);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Testimonials */
        .testimonials-section {
            background-color: var(--light-gray);
        }
        
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .testimonial-card {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 6rem;
            color: rgba(0, 91, 170, 0.1);
            position: absolute;
            top: 0;
            right: 2rem;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 1.5rem;
            border: 3px solid var(--secondary-yellow);
        }
        
        .author-info h4 {
            margin-bottom: 0.25rem;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        
        .author-info p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        .rating {
            color: var(--secondary-yellow);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        
        /* Partners Section */
        .partners-section {
            padding: 4rem 0;
            background-color: var(--white);
        }
        
        .partners-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-blue);
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .partners {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
            padding: 1rem 0;
        }
        
        .partner-logo {
            max-width: 180px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
            padding: 1rem;
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 5rem 0 2rem;
            text-align: center;
            position: relative;
            clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
            margin-top: -3rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: right;
            margin-bottom: 3rem;
        }
        
        .footer-col h3 {
            color: var(--secondary-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
            display: inline-block;
            padding: 0.25rem 0;
        }
        
        .footer-links a:hover {
            color: var(--secondary-yellow);
            transform: translateX(-5px);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .contact-info i {
            color: var(--secondary-yellow);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            justify-content: flex-end;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--secondary-yellow);
            color: var(--dark-blue);
            transform: translateY(-5px);
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--dark-blue);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-padding {
                padding: 5rem 0;
            }
            
            .footer {
                padding: 4rem 0 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-cta .btn:first-child {
                display: none;
            }
            
            .business-header {
                padding: 8rem 0 6rem;
                text-align: center;
                background-attachment: scroll;
            }
            
            .business-header h1,
            .business-header p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .header-cta {
                justify-content: center;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .calculator-form {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 4rem 0;
            }
            
            .business-header {
                padding: 7rem 0 5rem;
            }
            
            .cta-section {
                clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
                padding: 5rem 0;
            }
            
            .footer {
                clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
            }
            
            .feature-card {
                padding: 2rem;
            }
            
            .testimonials {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: 1rem;
            }
            
            .cta-buttons .btn:last-child {
                margin-bottom: 0;
            }
            
            .calculator-actions {
                flex-direction: column;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-col h3::after {
                right: 50%;
                transform: translateX(50%);
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-links a:hover {
                transform: translateX(0);
            }
        }
        
        @media (max-width: 576px) {
            .section-padding {
                padding: 3rem 0;
            }
            
            .business-header {
                padding: 6rem 0 4rem;
            }
            
            .header-cta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .header-cta .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .business-types {
                grid-template-columns: 1fr;
            }
            
            .calculator-form {
                padding: 1.5rem;
            }
            
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
                bottom: 1rem;
                left: 1rem;
            }
        }