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

 	.landing-page a:visited {
    	color: #0099ff!important;
    	text-decoration: underline!important;
	}
    
    .landing-page {
        font-family: 'Arial', sans-serif;
        background: #020B1A;
        color: #fff;
        line-height: 1.6;
        overflow-x: hidden;
    }



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

    /* Header Section */
    .landing-header {
        background: linear-gradient(135deg, #020B1A 0%, #0A1B3D 100%);
        padding: 20px 0;
        position: relative;
        overflow: hidden;
    }

    .landing-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(199, 171, 72, 0.1) 0%, transparent 50%);
    }

    .landing-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .landing-logo {
        font-size: 24px;
        font-weight: bold;
        color: #c7ab48;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .landing-contact-info {
        text-align: right;
        font-size: 14px;
    }

    .landing-contact-info div {
        margin: 2px 0;
    }

    .landing-phone {
        color: #c7ab48;
        font-weight: bold;
    }

    /* Hero Section */
    .landing-hero {
        background: linear-gradient(135deg, #0A1B3D 0%, #020B1A 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .landing-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(199, 171, 72, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        transform: translateY(-50%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.4; }
        50% { transform: translateY(-50%) scale(1.1); opacity: 0.6; }
    }

    .landing-hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .landing-hero-text h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #fff 0%, #c7ab48 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .landing-hero-text p {
        font-size: 20px;
        margin-bottom: 30px;
        color: #ccc;
    }

    .landing-cta-button {
        background: #041326;
        color: #d4be5a;
        padding: 15px 40px;
        border: 2px solid #d4be5a;
        border-radius: 50px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 10px 30px rgba(199, 171, 72, 0.2);
    }

    .landing-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(199, 171, 72, 0.4);
        background: #061A2E;
    }

    .landing-hero-form {
        background: rgba(10, 27, 61, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(199, 171, 72, 0.15);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(2, 11, 26, 0.5);
    }

    .landing-hero-form h3 {
        color: #c7ab48;
        margin-bottom: 20px;
        font-size: 24px;
        text-align: center;
    }

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

    .landing-form-group input,
    .landing-form-group textarea {
        width: 100%;
        padding: 15px;
        background: rgba(4, 19, 38, 0.6);
        border: 1px solid rgba(199, 171, 72, 0.2);
        border-radius: 10px;
        color: #fff;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .landing-form-group input:focus,
    .landing-form-group textarea:focus {
        outline: none;
        border-color: #c7ab48;
        box-shadow: 0 0 10px rgba(199, 171, 72, 0.25);
        background: rgba(6, 26, 46, 0.8);
    }

    .landing-form-group input::placeholder,
    .landing-form-group textarea::placeholder {
        color: #999;
    }

    .wpcf7-submit.landing-submit-btn,
	.wpcf7 .wpcf7-form input[type="submit"] {
        width: 100% !important;
        background: linear-gradient(135deg, #c7ab48 0%, #d4be5a 100%) !important;
        color: #000 !important;
        padding: 15px !important;
        border: none !important;
        border-radius: 10px !important;
        font-size: 16px !important;
        font-weight: bold !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase !important;
    }

    .landing-submit-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 20px rgba(199, 171, 72, 0.3) !important;
    }

    /* Services Section */
    .landing-services {
        padding: 80px 0;
        background: #0F1F3C;
        position: relative;
    }

    .landing-services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 0%, rgba(199, 171, 72, 0.03) 50%, transparent 100%);
    }

    .landing-services-content {
        position: relative;
        z-index: 2;
    }

    .landing-section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .landing-section-title h2 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #c7ab48;
    }

    .landing-section-title p {
        font-size: 18px;
        color: #ccc;
    }

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

    .landing-service-card {
        background: rgba(4, 19, 38, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(199, 171, 72, 0.08);
        border-radius: 15px;
        padding: 30px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .landing-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(199, 171, 72, 0.08) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .landing-service-card:hover::before {
        opacity: 1;
    }

    .landing-service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(199, 171, 72, 0.2);
        box-shadow: 0 20px 40px rgba(199, 171, 72, 0.08);
        background: rgba(6, 26, 46, 0.4);
    }

    .landing-service-card h3 {
        color: #c7ab48;
        font-size: 24px;
        margin-bottom: 15px;
        position: relative;
        z-index: 2;
    }

    .landing-service-card p {
        color: #ccc;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .landing-service-card ul {
        list-style: none;
        position: relative;
        z-index: 2;
    }

    .landing-service-card li {
        color: #fff;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

    .landing-service-card li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #c7ab48;
        font-weight: bold;
    }

    /* Process Section */
    .landing-process {
        padding: 80px 0;
        background: #08152B;
    }

    .landing-process-steps {
        display: flex;
        gap: 20px;
        margin-top: 60px;
    }

    .landing-process-step {
        text-align: center;
        position: relative;
    }

    .landing-step-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #c7ab48 0%, #d4be5a 100%);
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: bold;
        margin: 0 auto 20px;
        box-shadow: 0 10px 30px rgba(199, 171, 72, 0.25);
    }

    .landing-process-step h4 {
        color: #c7ab48;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .landing-process-step p {
        color: #ccc;
    }

    /* Contact Section */
    .landing-contact {
        padding: 80px 0;
        background: linear-gradient(135deg, #0F1F3C 0%, #020B1A 100%);
    }

    .landing-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .landing-contact-info-detailed {
        background: rgba(10, 27, 61, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(199, 171, 72, 0.15);
        border-radius: 20px;
        padding: 40px;
    }

    .landing-contact-info-detailed h3 {
        color: #c7ab48;
        font-size: 24px;
        margin-bottom: 30px;
    }

    .landing-contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(4, 19, 38, 0.4);
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .landing-contact-item:hover {
        background: rgba(199, 171, 72, 0.08);
    }

    .landing-contact-icon {
        width: 40px;
        height: 40px;
        background: #c7ab48;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: #000;
        font-weight: bold;
    }

    .landing-contact-form-section {
        background: rgba(10, 27, 61, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(199, 171, 72, 0.15);
        border-radius: 20px;
        padding: 40px;
    }

    .landing-contact-form-section h3 {
        color: #c7ab48;
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .landing-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .landing-hero-text h1 {
            font-size: 36px;
        }

        .landing-contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .landing-header-content {
            flex-direction: column;
            gap: 20px;
        }

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

        .landing-process-steps {
			display: grid;
            grid-template-columns: 1fr;
        }
    }

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

    .landing-animate-fade-in {
        animation: fadeInUp 0.8s ease-out;
    }

    /* Hide default WordPress elements for landing page */
    .landing-page #headline,
    .landing-page .breadcrumbs-w {
        display: none;
    }

