:root {
    --primary-blue: #63B3ED;
    --dark-blue: #2B6CB0;
    --accent-yellow: #FFC107;
    --dark-bg: #1A202C;
    --text-light: #F7FAFC;
    --text-dark: #2D3748;
    --card-bg: #212121;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #70C5FE 0%, #3182CE 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4299E1;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #2B6CB0;
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

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

/* Header */
.header {
    padding: 2rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.shield-logo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #2D3748;
    line-height: 1;
}

.logo-text h1 span {
    color: var(--accent-yellow);
}

.logo-text p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2D3748;
    margin-top: 2px;
}

.coming-soon-badge {
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.sub-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: -10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.main-headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-yellow);
    border-radius: 3px;
}

.pitch-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pitch-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-end;
}

.question-mark {
    font-size: 4rem;
    color: var(--accent-yellow);
    line-height: 0.8;
    margin-left: 5px;
    transform: rotate(15deg);
    display: inline-block;
}

.pitch-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E2E8F0;
}

/* Services Container */
.services-container {
    flex: 0.8;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.services-card {
    background: var(--card-bg);
    border: 3px solid var(--accent-yellow);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.services-title {
    background: var(--accent-yellow);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.services-list {
    list-style: none;
    margin-top: 1rem;
}

.services-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 0.5px;
}

.services-list li:last-child {
    border-bottom: none;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

/* Enquiry Section */
.enquiry-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.form-container {
    flex: 1.5;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group:nth-child(4),
.form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4A5568;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F7FAFC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.2);
}

.submit-btn {
    grid-column: 1 / -1;
    background: var(--dark-blue);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #235A94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-message {
    grid-column: 1 / -1;
    text-align: center;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #C6F6D5;
    color: #22543D;
}

.form-message.error {
    display: block;
    background: #FED7D7;
    color: #822727;
}

/* CTA Side */
.cta-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dm-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dm-highlight {
    color: var(--accent-yellow);
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--accent-yellow);
    padding: 1.5rem;
    text-align: center;
    margin-top: auto;
}

.footer p {
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-headline {
        font-size: 4rem;
    }
    
    .services-card {
        transform: none;
    }
    
    .services-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .hero-text, .services-container {
        width: 100%;
    }
    
    .main-headline {
        font-size: 3rem;
    }
    
    .sub-headline {
        font-size: 2rem;
    }
    
    .enquiry-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(1),
    .form-group:nth-child(2),
    .form-group:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.modal-icon.success {
    background: linear-gradient(135deg, #48BB78 0%, #38A169 100%);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.3);
}

.modal-icon.error {
    background: linear-gradient(135deg, #F56565 0%, #E53E3E 100%);
    box-shadow: 0 10px 20px rgba(245, 101, 101, 0.3);
}

.modal-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.modal-close-btn {
    background: var(--dark-blue);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(43, 108, 176, 0.2);
}

.modal-close-btn:hover {
    background: #235A94;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(43, 108, 176, 0.3);
}
