
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* CTA Section Styles */
        .cta-section {
            position: relative;
            padding: 100px 0;
            overflow: hidden;
            background-image: url('../images/cta-bg.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(156, 20, 20, 0.95) 0%, rgba(156, 20, 20, 0.85) 50%, rgba(248, 169, 34, 0.9) 100%);
            z-index: 1;
        }

        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .cta-image-wrapper {
            flex: 0 0 45%;
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .cta-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .cta-image-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #F8A922, #ffc107, #F8A922);
            border-radius: 20px;
            z-index: -1;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .cta-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .cta-image-container:hover .cta-image {
            transform: scale(1.05);
        }

        .cta-content {
            flex: 1;
            color: white;
        }

        .cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, #F8A922, #ffc107);
            color: #9C1414;
            padding: 8px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(248, 169, 34, 0.4);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .cta-heading {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-heading span {
            color: #F8A922;
            position: relative;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% {
                text-shadow: 0 0 10px rgba(248, 169, 34, 0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(248, 169, 34, 0.8), 0 0 30px rgba(248, 169, 34, 0.6);
            }
        }

        .cta-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .cta-button-wrapper {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 40px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        /* Shimmer effect */
        .cta-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -100%;
            width: 100%;
            height: 200%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: skewX(-20deg);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 150%;
            }
        }

        /* Ripple effect */
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button-primary {
            background: linear-gradient(135deg, #F8A922, #ffc107);
            color: #9C1414;
            box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4);
            animation: buttonFloat 3s ease-in-out infinite, buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonFloat {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-5px) scale(1);
            }
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4), 0 0 0 0 rgba(248, 169, 34, 0.7);
            }
            50% {
                box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4), 0 0 0 15px rgba(248, 169, 34, 0);
            }
        }

        .cta-button-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(248, 169, 34, 0.6);
        }

        .cta-button-primary:active {
            transform: translateY(-2px) scale(1.02);
        }

        .cta-button-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            animation: buttonFloat 3s ease-in-out infinite 0.5s, buttonPulseSecondary 2s ease-in-out infinite;
        }

        @keyframes buttonPulseSecondary {
            0%, 100% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.7);
            }
            50% {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(255, 255, 255, 0);
            }
        }

        .cta-button-secondary:hover {
            background: white;
            color: #9C1414;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
            border-color: white;
        }

        .cta-button-secondary:active {
            transform: translateY(-2px) scale(1.02);
        }

        .cta-button-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .cta-button:hover .cta-button-icon {
            transform: translateX(8px) rotate(0deg);
            animation: bounce 0.6s ease-in-out;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(8px);
            }
            50% {
                transform: translateX(15px);
            }
        }

        .cta-features {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        /* Phone Section Styles */
        .cta-phone-section {
            margin: 35px 0 20px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(248, 169, 34, 0.3);
            backdrop-filter: blur(10px);
            animation: phonePulse 2s ease-in-out infinite;
        }

        @keyframes phonePulse {
            0%, 100% {
                transform: scale(1);
                border-color: rgba(248, 169, 34, 0.3);
            }
            50% {
                transform: scale(1.02);
                border-color: rgba(248, 169, 34, 0.6);
            }
        }

        .cta-phone-label {
            font-size: 14px;
            color: #F8A922;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-align: center;
        }

        .cta-phone-number {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 32px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cta-phone-number:hover {
            color: #F8A922;
            transform: scale(1.05);
        }

        .cta-phone-icon {
            width: 32px;
            height: 32px;
            color: #F8A922;
            animation: phoneRing 1.5s ease-in-out infinite;
        }

        @keyframes phoneRing {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 30% {
                transform: rotate(-15deg);
            }
            20%, 40% {
                transform: rotate(15deg);
            }
            50% {
                transform: rotate(0deg);
            }
        }

        .cta-phone-number:hover .cta-phone-icon {
            animation: phoneRingFast 0.5s ease-in-out infinite;
        }

        @keyframes phoneRingFast {
            0%, 100% {
                transform: rotate(0deg) scale(1);
            }
            25% {
                transform: rotate(-20deg) scale(1.1);
            }
            75% {
                transform: rotate(20deg) scale(1.1);
            }
        }

        .cta-features {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .cta-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideIn 0.8s ease-out forwards;
            opacity: 0;
        }

        .cta-feature-item:nth-child(1) {
            animation-delay: 0.2s;
        }

        .cta-feature-item:nth-child(2) {
            animation-delay: 0.4s;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cta-feature-icon {
            width: 24px;
            height: 24px;
            color: #F8A922;
            animation: spin 0.6s ease-in-out;
        }

        @keyframes spin {
            from {
                transform: rotate(-180deg) scale(0);
            }
            to {
                transform: rotate(0deg) scale(1);
            }
        }

        .cta-feature-item:hover .cta-feature-icon {
            animation: wiggle 0.5s ease-in-out;
        }

        @keyframes wiggle {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-10deg);
            }
            75% {
                transform: rotate(10deg);
            }
        }

        .cta-feature-text {
            font-size: 15px;
            color: white;
            font-weight: 500;
        }

        /* Decorative Elements */
        .cta-decoration {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(248, 169, 34, 0.15), transparent);
            animation: floatDecor 6s ease-in-out infinite;
        }

        @keyframes floatDecor {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        .cta-decoration-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .cta-decoration-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .cta-decoration-3 {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .cta-section {
                padding: 80px 0;
            }

            .cta-container {
                gap: 40px;
            }

            .cta-heading {
                font-size: 40px;
            }

            .cta-text {
                font-size: 16px;
            }

            .cta-image-wrapper {
                flex: 0 0 40%;
            }
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 60px 0;
                background-attachment: scroll;
            }

            .cta-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .cta-image-wrapper {
                flex: 0 0 100%;
                max-width: 400px;
            }

            .cta-heading {
                font-size: 36px;
            }

            .cta-button-wrapper {
                justify-content: center;
            }

            .cta-features {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .cta-section {
                padding: 50px 0;
            }

            .cta-heading {
                font-size: 28px;
            }

            .cta-text {
                font-size: 15px;
                margin-bottom: 25px;
            }

            .cta-button {
                padding: 14px 30px;
                font-size: 15px;
                width: 100%;
                justify-content: center;
            }

            .cta-phone-number {
                font-size: 24px;
            }

            .cta-phone-icon {
                width: 28px;
                height: 28px;
            }

            .cta-features {
                flex-direction: column;
                gap: 15px;
            }

            .cta-feature-item {
                justify-content: center;
            }

            .cta-badge {
                font-size: 12px;
                padding: 6px 20px;
            }
        }

        @media (max-width: 380px) {
            .cta-heading {
                font-size: 24px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            .cta-phone-number {
                font-size: 20px;
            }

            .cta-phone-icon {
                width: 24px;
                height: 24px;
            }
        }
 